From 38941a61bf105a601200e378409bc2078a070994 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sun, 7 Apr 2013 21:51:10 +0200 Subject: [PATCH 01/55] turn off autocompletion for password field refs #2632 --- core/js/jquery-showpassword.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/js/jquery-showpassword.js b/core/js/jquery-showpassword.js index 0f4678327a..9cdc48efe8 100644 --- a/core/js/jquery-showpassword.js +++ b/core/js/jquery-showpassword.js @@ -35,7 +35,8 @@ 'style' : $element.attr('style'), 'size' : $element.attr('size'), 'name' : $element.attr('name')+'-clone', - 'tabindex' : $element.attr('tabindex') + 'tabindex' : $element.attr('tabindex'), + 'autocomplete' : 'off' }); return $clone; From ca323e56c24ce08225a774dd37661af9c91375d9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 17 Apr 2013 11:53:38 +0200 Subject: [PATCH 02/55] correct primary color to #1d2d44 where slightly wrong --- core/css/styles.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 15df585247..4e7fa61f62 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -23,13 +23,13 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari #body-login #header { margin: -2em auto 0; text-align:center; height:10em; padding:1em 0 .5em; -moz-box-shadow:0 0 1em rgba(0, 0, 0, .5); -webkit-box-shadow:0 0 1em rgba(0, 0, 0, .5); box-shadow:0 0 1em rgba(0, 0, 0, .5); background:#1d2d44; /* Old browsers */ -background:-moz-linear-gradient(top, #35537a 0%, #1d2d42 100%); /* FF3.6+ */ -background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d42)); /* Chrome,Safari4+ */ -background:-webkit-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* Chrome10+,Safari5.1+ */ -background:-o-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* Opera11.10+ */ -background:-ms-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* IE10+ */ -background:linear-gradient(top, #35537a 0%,#1d2d42 100%); /* W3C */ -filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d42',GradientType=0 ); /* IE6-9 */ } +background:-moz-linear-gradient(top, #35537a 0%, #1d2d44 100%); /* FF3.6+ */ +background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d44)); /* Chrome,Safari4+ */ +background:-webkit-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Chrome10+,Safari5.1+ */ +background:-o-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Opera11.10+ */ +background:-ms-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* IE10+ */ +background:linear-gradient(top, #35537a 0%,#1d2d44 100%); /* W3C */ +filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d44',GradientType=0 ); /* IE6-9 */ } #owncloud { position:absolute; top:0; left:0; padding:6px; padding-bottom:0; } .header-right { float:right; vertical-align:middle; padding:0.5em; } @@ -119,7 +119,7 @@ a.disabled, a.disabled:hover, a.disabled:focus { } .primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active { border:1px solid #1d2d44; - background:#1d2d42; color:#bbb; text-shadow:#000 0 -1px 0; + background:#1d2d44; color:#bbb; text-shadow:#000 0 -1px 0; -moz-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; -webkit-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; } From 9f58166339d2f5aec4b3d2af01e33d52c1bccbea Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 17 Apr 2013 16:30:42 +0200 Subject: [PATCH 03/55] make textarea inherit ownCloud font instead of using monospace --- core/css/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/styles.css b/core/css/styles.css index 4e7fa61f62..731ba3800d 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -50,6 +50,7 @@ button, .button, input[type="hidden"] { height:0; width:0; } input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], textarea { background:#f8f8f8; color:#555; cursor:text; + font-family: inherit; /* use default ownCloud font instead of default textarea monospace */ } input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"] { -webkit-appearance:textfield; -moz-appearance:textfield; From 21bcb95e2a9afb155561a9e9fccbe6ef476461f6 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 17 Apr 2013 17:15:34 +0200 Subject: [PATCH 04/55] move warning and error states together in CSS, to be cleaned up --- core/css/styles.css | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 731ba3800d..406fa8a982 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -220,7 +220,6 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #login #databaseField .infield { padding-left:0; } #login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; } -#login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } /* Show password toggle */ #show, #dbpassword { position:absolute; right:1em; top:.8em; float:right; } @@ -246,14 +245,24 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#000; background-color:#e8e8e8; } -/* Warnings */ -fieldset.warning { - padding:8px; - color:#b94a48; background-color:#f2dede; border:1px solid #eed3d7; - border-radius:5px; +/* Warnings, for information */ +.warning { + display: block; + background-color: #f2dede; + color: #b94a48; + padding: 8px; + margin: 0 7px 5px; + border: 1px solid #eed3d7; + border-radius: 5px; } -fieldset.warning legend { color:#b94a48 !important; } -fieldset.warning a { color:#b94a48 !important; font-weight:bold; } +.warning legend, +.warning a { + color: #b94a48 !important; + font-weight: bold; +} +/* Errors, for grave states */ +li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; } +.error { color:#FF3B3B; } /* Alternative Logins */ #alternative-logins legend { margin-bottom:10px; } @@ -334,8 +343,6 @@ div.jp-play-bar, div.jp-seek-bar { padding:0; } .pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; } .pager li { display:inline-block; } -li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; } -.error { color:#FF3B3B; } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { overflow:hidden; text-overflow:ellipsis; } .hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777; padding-left:25px; background-position:0 0.3em;} .separator { display:inline; border-left:1px solid #d3d3d3; border-right:1px solid #fff; height:10px; width:0px; margin:4px; } From c8cafcefe49121fb62c58795e066c0559983de7d Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 17 Apr 2013 17:16:15 +0200 Subject: [PATCH 05/55] move password warning more relevant below password field, un-nest log in warning --- core/templates/login.php | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/core/templates/login.php b/core/templates/login.php index 2c9884f524..571e0a865d 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -4,23 +4,14 @@ '); } ?> -
    - -
  • - t('Automatic logon rejected!')); ?>
    - t('If you did not change your password recently, your account may be compromised!')); ?> -
    - t('Please change your password to secure your account again.')); ?> -
  • - - - -
  • - t('Lost your password?')); ?> -
  • -
    - -
+ +
+ t('Automatic logon rejected!')); ?>
+ t('If you did not change your password recently, your account may be compromised!')); ?> +
+ t('Please change your password to secure your account again.')); ?> +
+

@@ -37,6 +28,13 @@

+ + + + t('Lost your password?')); ?> + + + From d83adb8b84b9e0502c66bf3211ff5789b08ab4af Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 17 Apr 2013 17:36:30 +0200 Subject: [PATCH 06/55] remove unnecessary border from navigation, looked strange with scrollbar and pushed the text over 1px --- core/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index 406fa8a982..854733b4bf 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -272,7 +272,7 @@ li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; bac /* NAVIGATION ------------------------------------------------------------- */ #navigation { position:fixed; float:left; width:64px; padding-top:3.5em; z-index:75; height:100%; - background:#383c43 url('../img/noise.png') repeat; border-right:1px #333 solid; + background:#383c43 url('../img/noise.png') repeat; -moz-box-shadow:0 0 7px #000; -webkit-box-shadow:0 0 7px #000; box-shadow:0 0 7px #000; overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box; } From 9facb67fab0cc9556e681ff75ec59218eb2ba34b Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 18 Apr 2013 08:30:09 +0200 Subject: [PATCH 07/55] Let autoloader resolve paths under apps lib directory. --- lib/base.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/base.php b/lib/base.php index dde994a7e5..72645d0778 100644 --- a/lib/base.php +++ b/lib/base.php @@ -97,8 +97,14 @@ class OC { $path = 'public/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); } elseif (strpos($className, 'OCA\\') === 0) { foreach (self::$APPSROOTS as $appDir) { - $path = $appDir['path'] . '/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); - $fullPath = stream_resolve_include_path($path); + $path = strtolower(str_replace('\\', '/', substr($className, 4)) . '.php'); + $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $path); + if (file_exists($fullPath)) { + require_once $fullPath; + return false; + } + $libpath = substr($path, 0, strpos($path, '/')) . '/lib' . substr($path, strpos($path, '/')); + $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $libpath); if (file_exists($fullPath)) { require_once $fullPath; return false; From e4876c91176473c19e8c24d8fcb6e338cffa0123 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 18 Apr 2013 21:11:55 +0200 Subject: [PATCH 08/55] Don't use empty session.cookie_path, otherwise we get multiple cookies --- lib/base.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/base.php b/lib/base.php index dde994a7e5..50dd9a2912 100644 --- a/lib/base.php +++ b/lib/base.php @@ -324,7 +324,8 @@ class OC { ini_set('session.cookie_httponly', '1;'); // set the cookie path to the ownCloud directory - ini_set('session.cookie_path', OC::$WEBROOT); + $cookie_path = OC::$WEBROOT ?: '/'; + ini_set('session.cookie_path', $cookie_path); // set the session name to the instance id - which is unique session_name(OC_Util::getInstanceId()); @@ -357,7 +358,7 @@ class OC { // session timeout if (isset($_SESSION['LAST_ACTIVITY']) && (time() - $_SESSION['LAST_ACTIVITY'] > 60*60*24)) { if (isset($_COOKIE[session_name()])) { - setcookie(session_name(), '', time() - 42000, OC::$WEBROOT); + setcookie(session_name(), '', time() - 42000, $cookie_path); } session_unset(); session_destroy(); From e09c17de5b25d6c728bc6b828dcc686ce66ae134 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 18 Apr 2013 22:29:50 +0200 Subject: [PATCH 09/55] Added explanation --- lib/base.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/base.php b/lib/base.php index 72645d0778..16b0da7c77 100644 --- a/lib/base.php +++ b/lib/base.php @@ -103,6 +103,7 @@ class OC { require_once $fullPath; return false; } + // If not found in the root of the app directory, insert '/lib' after app id and try again. $libpath = substr($path, 0, strpos($path, '/')) . '/lib' . substr($path, strpos($path, '/')); $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $libpath); if (file_exists($fullPath)) { From 1ad0c11136a5e1eefcc13a83c195ff206853ee16 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 19 Apr 2013 01:57:39 +0200 Subject: [PATCH 10/55] [tx-robot] updated from transifex --- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 298c2a84dd..8b95f90e69 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 3f94378ee2..0d841af5b4 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index f57c1451a8..1a8cf27e1d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index d5dba8c90c..d9f875bbc2 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 9de0f543bf..b7e89b1676 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 5ee9198ae4..2204b0211b 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index a59e26f6d4..00e7f8f2bf 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 967c1dfb32..466ebc8a7c 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 3be3146a59..33c40bb724 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 1e7a24c307..7ea4b20758 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index fb8be0843d..3eafc9ad0b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"POT-Creation-Date: 2013-04-19 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 938b12236ad934c9222b9c4fd2d1beaf9a0a4418 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Fri, 19 Apr 2013 10:06:18 +0200 Subject: [PATCH 11/55] modify password clone to password type right on submit to prevent the browser remind the content --- core/js/jquery-showpassword.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/core/js/jquery-showpassword.js b/core/js/jquery-showpassword.js index 9cdc48efe8..e1737643b4 100644 --- a/core/js/jquery-showpassword.js +++ b/core/js/jquery-showpassword.js @@ -103,7 +103,16 @@ $clone.bind('blur', function() { $input.trigger('focusout'); }); setState( $checkbox, $input, $clone ); - + + // set type of password field clone (type=text) to password right on submit + // to prevent browser save the value of this field + $clone.closest('form').submit(function(e) { + // .prop has to be used, because .attr throws + // an error while changing a type of an input + // element + $clone.prop('type', 'password'); + }); + if( callback.fn ){ callback.fn( callback.args ); } From 7ac49dd52a238eb721d5d750e79a0db56599b212 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Apr 2013 12:44:54 +0200 Subject: [PATCH 12/55] Cleaner isWebDAVWorking reason, otherwise people overlook the reason --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 34ed4a2a96..38453c1ce9 100755 --- a/lib/util.php +++ b/lib/util.php @@ -595,7 +595,7 @@ class OC_Util { } catch(\Sabre_DAV_Exception_NotAuthenticated $e) { $return = true; } catch(\Exception $e) { - OC_Log::write('core', 'isWebDAVWorking: NO - Reason: '.$e, OC_Log::WARN); + OC_Log::write('core', 'isWebDAVWorking: NO - Reason: '.$e->getMessage(). ' ('.get_class($e).')', OC_Log::WARN); $return = false; } From a21885953f3420e2262fecaa0d75c4d40c2a0513 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Apr 2013 13:45:40 +0200 Subject: [PATCH 13/55] No need to strip slashes, json_decode handles that for us --- apps/files/ajax/delete.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index da7e9d6b2a..5f4856ec79 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -8,7 +8,7 @@ OCP\JSON::callCheck(); // Get data $dir = stripslashes($_POST["dir"]); -$files = isset($_POST["file"]) ? stripslashes($_POST["file"]) : stripslashes($_POST["files"]); +$files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"]; $files = json_decode($files); $filesWithError = ''; From 802a5a331bf645ab3cc17e9849a7719146b1d54b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Apr 2013 13:46:11 +0200 Subject: [PATCH 14/55] Fix displaying spinner on delete --- apps/files/js/filelist.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 70c3332cca..b1e9a88506 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -320,9 +320,9 @@ var FileList={ } for (var i=0; i'; - deleteAction[0].outerHTML = newHTML; + deleteAction.html(newHTML); } // Finish any existing actions if (FileList.lastAction) { @@ -344,7 +344,7 @@ var FileList={ } else { $.each(files,function(index,file) { var deleteAction = $('tr').filterAttr('data-file',file).children("td.date").children(".move2trash"); - deleteAction[0].outerHTML = oldHTML; + deleteAction.html(oldHTML); }); } }); From e1c5b31d6544b5f7700888526f7e55b66e677498 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Apr 2013 16:04:33 +0200 Subject: [PATCH 15/55] Test if we want a 3rdparty style/script before checking the 3rdparty root --- lib/templatelayout.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 7309423223..69bebac050 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -111,7 +111,8 @@ class OC_TemplateLayout extends OC_Template { $files = array(); foreach($styles as $style) { // is it in 3rdparty? - if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $style.'.css')) { + if(strpos($style, '3rdparty') === 0 && + self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $style.'.css')) { // or in the owncloud root? }elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "$style$fext.css" )) { @@ -169,7 +170,8 @@ class OC_TemplateLayout extends OC_Template { $files = array(); foreach($scripts as $script) { // Is it in 3rd party? - if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $script.'.js')) { + if(strpos($script, '3rdparty') === 0 && + self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $script.'.js')) { // Is it in apps and overwritten by the theme? }elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/apps/$script$fext.js" )) { From 03c7a52bc595bbc9fe1f155da699994f93b84131 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 20 Apr 2013 02:02:09 +0200 Subject: [PATCH 16/55] [tx-robot] updated from transifex --- apps/files/l10n/es_AR.php | 1 + apps/files/l10n/zh_TW.php | 2 +- apps/files_trashbin/l10n/zh_TW.php | 8 ++--- core/l10n/zh_TW.php | 2 +- l10n/es_AR/files.po | 16 ++++----- l10n/sl/core.po | 36 ++++++++++----------- l10n/sl/files.po | 14 ++++---- l10n/sl/files_trashbin.po | 10 +++--- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/zh_TW/core.po | 41 +++++++++++------------ l10n/zh_TW/files.po | 25 ++++++++------- l10n/zh_TW/files_trashbin.po | 17 +++++----- l10n/zh_TW/lib.po | 50 ++++++++++++++--------------- l10n/zh_TW/settings.po | 34 ++++++++++---------- lib/l10n/zh_TW.php | 32 ++++++++++++------ 25 files changed, 163 insertions(+), 147 deletions(-) diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index bd33fdfa4a..25c2f4ff69 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -25,6 +25,7 @@ "undo" => "deshacer", "perform delete operation" => "Eliminar", "1 file uploading" => "Subiendo 1 archivo", +"files uploading" => "Subiendo archivos", "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", "File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index b7a58e3e56..c61cf0e222 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -34,7 +34,7 @@ "Your download is being prepared. This might take some time if the files are big." => "正在準備您的下載,若您的檔案較大,將會需要更多時間。", "Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", "Not enough space available" => "沒有足夠的可用空間", -"Upload cancelled." => "上傳取消", +"Upload cancelled." => "上傳已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中。離開此頁面將會取消上傳。", "URL cannot be empty." => "URL 不能為空白。", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留", diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index adfde6c06e..a9dcba8f7d 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -1,9 +1,9 @@ "無法永久刪除%s", -"Couldn't restore %s" => "無法復原%s", +"Couldn't delete %s permanently" => "無法永久刪除 %s", +"Couldn't restore %s" => "無法復原 %s", "perform restore operation" => "進行復原動作", "Error" => "錯誤", -"delete file permanently" => "永久刪除文件", +"delete file permanently" => "永久刪除檔案", "Delete permanently" => "永久刪除", "Name" => "名稱", "Deleted" => "已刪除", @@ -11,7 +11,7 @@ "{count} folders" => "{count} 個資料夾", "1 file" => "1 個檔案", "{count} files" => "{count} 個檔案", -"Nothing in here. Your trash bin is empty!" => "這裏沒東西。您的垃圾桶是空的!", +"Nothing in here. Your trash bin is empty!" => "您的垃圾桶是空的!", "Restore" => "復原", "Delete" => "刪除", "Deleted Files" => "已刪除的檔案" diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 5b14033ffe..3199688be3 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -103,7 +103,7 @@ "Admin" => "管理者", "Help" => "幫助", "Access forbidden" => "存取被拒", -"Cloud not found" => "未發現雲", +"Cloud not found" => "未發現雲端", "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index c7d4671e9a..cd36082331 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012-2013. -# CJTess , 2013. -# , 2012-2013. -# Javier Victor Mariano Bruno , 2013. +# Agustin Ferrario , 2012-2013 +# cjtess , 2013 +# cjtess , 2012-2013 +# Javier Victor Mariano Bruno , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"PO-Revision-Date: 2013-04-19 09:10+0000\n" +"Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -132,7 +132,7 @@ msgstr "Subiendo 1 archivo" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "Subiendo archivos" #: js/files.js:52 msgid "'.' is an invalid file name." diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 59dca9a91a..3d0bd6ff5d 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2013. -# <>, 2012. -# Matej Urbančič <>, 2013. -# , 2012. -# Peter Peroša , 2012. -# , 2012. +# mateju <>, 2013 +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 +# Peter Peroša , 2012 +# urossolar , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 19:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -525,37 +525,37 @@ msgstr "Napredne možnosti" msgid "Data folder" msgstr "Podatkovna mapa" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Nastavi podatkovno zbirko" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "bo uporabljen" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Uporabnik podatkovne zbirke" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Končaj namestitev" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 70bc018b17..1c0597e776 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Matej Urbančič <>, 2013. -# , 2012. -# Peter Peroša , 2012. -# , 2012. +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 +# Peter Peroša , 2012 +# urossolar , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"PO-Revision-Date: 2013-04-19 20:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 3a134b8b18..1c88a1cf01 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2013. -# Matej Urbančič <>, 2013. +# mateju <>, 2013 +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 17:02+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 8b95f90e69..e5cecdb8be 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 0d841af5b4..9c67558003 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 1a8cf27e1d..26837cd918 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index d9f875bbc2..864fe393f1 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index b7e89b1676..770a271e76 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 2204b0211b..e5da673209 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 00e7f8f2bf..48387dd519 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 466ebc8a7c..7c6bf8ac15 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 33c40bb724..6b7f59c9fe 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 7ea4b20758..274338879d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3eafc9ad0b..2a1a9c5903 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-19 01:56+0200\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 1d36067acb..83022879f3 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -3,19 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Donahue Chuang , 2012. -# , 2012. -# Ming Yi Wu , 2012. -# , 2013. -# Pellaeon Lin , 2013. +# admachen , 2013 +# Hydriz , 2013 +# Donahue Chuang , 2012 +# dw4dev , 2012 +# Ming Yi Wu , 2012 +# pellaeon , 2013 +# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 04:10+0000\n" +"Last-Translator: admachen \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -465,7 +466,7 @@ msgstr "存取被拒" #: templates/404.php:12 msgid "Cloud not found" -msgstr "未發現雲" +msgstr "未發現雲端" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -525,37 +526,37 @@ msgstr "進階" msgid "Data folder" msgstr "資料夾" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "完成設定" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index e4feb16563..3ef4705fcd 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -3,21 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Donahue Chuang , 2012. -# , 2012. -# Eddy Chang , 2012. -# , 2013. -# , 2013. -# Pellaeon Lin , 2013. -# ywang , 2012. +# admachen , 2013 +# Hydriz , 2013 +# Donahue Chuang , 2012 +# dw4dev , 2012 +# Eddy Chang , 2012 +# pellaeon , 2013 +# orinx , 2013 +# pellaeon , 2013 +# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"PO-Revision-Date: 2013-04-19 04:10+0000\n" +"Last-Translator: admachen \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -176,7 +177,7 @@ msgstr "沒有足夠的可用空間" #: js/files.js:312 msgid "Upload cancelled." -msgstr "上傳取消" +msgstr "上傳已取消" #: js/files.js:408 msgid "" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index a8ac6763aa..f903767b93 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. +# Hydriz , 2013 +# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:10+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +22,12 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "無法永久刪除%s" +msgstr "無法永久刪除 %s" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "無法復原%s" +msgstr "無法復原 %s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" @@ -38,7 +39,7 @@ msgstr "錯誤" #: js/trash.js:34 msgid "delete file permanently" -msgstr "永久刪除文件" +msgstr "永久刪除檔案" #: js/trash.js:121 msgid "Delete permanently" @@ -70,7 +71,7 @@ msgstr "{count} 個檔案" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "這裏沒東西。您的垃圾桶是空的!" +msgstr "您的垃圾桶是空的!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 07d0bd557f..09c7e16617 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:00+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,11 +48,11 @@ msgstr "管理" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP 下載已關閉" +msgstr "ZIP 下載已關閉。" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "檔案需要逐一下載" +msgstr "檔案需要逐一下載。" #: files.php:211 files.php:244 msgid "Back to Files" @@ -60,7 +60,7 @@ msgstr "回到檔案列表" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "選擇的檔案太大以致於無法產生壓縮檔" +msgstr "選擇的檔案太大以致於無法產生壓縮檔。" #: helper.php:228 msgid "couldn't be determined" @@ -92,47 +92,47 @@ msgstr "圖片" #: setup.php:34 msgid "Set an admin username." -msgstr "設置一個管理員用戶名。" +msgstr "設定管理員帳號。" #: setup.php:37 msgid "Set an admin password." -msgstr "設置一個管理員密碼。" +msgstr "設定管理員密碼。" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s 輸入資料庫使用者名稱。" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s 輸入資料庫名稱。" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s 資料庫名稱不能包含小數點" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s 設定資料庫主機。" #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL用戶名和/或密碼無效" +msgstr "PostgreSQL 用戶名和/或密碼無效" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." -msgstr "您必須輸入一個現有的賬戶或管理員" +msgstr "您必須輸入一個現有的帳號或管理員帳號。" #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "Oracle用戶名和/或密碼無效" +msgstr "Oracle 用戶名和/或密碼無效" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "MySQL用戶名和/或密碼無效" +msgstr "MySQL 用戶名和/或密碼無效" #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -140,42 +140,42 @@ msgstr "MySQL用戶名和/或密碼無效" #: setup.php:614 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "資料庫錯誤:\"%s\"" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "有問題的指令是:\"%s\"" #: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL 使用者 '%s'@'localhost' 已經存在。" #: setup.php:304 msgid "Drop this user from MySQL" -msgstr "" +msgstr "在 MySQL 移除這個使用者" #: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL 使用者 '%s'@'%%' 已經存在" #: setup.php:310 msgid "Drop this user from MySQL." -msgstr "" +msgstr "在 MySQL 移除這個使用者。" #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL 使用者和/或密碼無效:%s" #: setup.php:853 msgid "" @@ -251,7 +251,7 @@ msgstr "最新的" #: updater.php:84 msgid "updates check is disabled" -msgstr "檢查更新已停用" +msgstr "更新檢查已停用" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index f0787d2836..23cc130ca4 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -3,23 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Donahue Chuang , 2012. -# , 2012. -# , 2013. -# , 2013. -# Pellaeon Lin , 2013. -# , 2012. -# , 2013. -# , 2012. -# , 2012. -# ywang , 2012. +# Hydriz , 2013 +# Donahue Chuang , 2012 +# dw4dev , 2012 +# pellaeon , 2013 +# orinx , 2013 +# pellaeon , 2013 +# sy6614 , 2012 +# ronnietse , 2013 +# weiyu , 2012 +# Jeff5555 , 2012 +# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -323,19 +323,19 @@ msgstr "紀錄" msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "更多" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "少" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "版本" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the "使用者", "Apps" => "應用程式", "Admin" => "管理", -"ZIP download is turned off." => "ZIP 下載已關閉", -"Files need to be downloaded one by one." => "檔案需要逐一下載", +"ZIP download is turned off." => "ZIP 下載已關閉。", +"Files need to be downloaded one by one." => "檔案需要逐一下載。", "Back to Files" => "回到檔案列表", -"Selected files too large to generate zip file." => "選擇的檔案太大以致於無法產生壓縮檔", +"Selected files too large to generate zip file." => "選擇的檔案太大以致於無法產生壓縮檔。", "couldn't be determined" => "無法判斷", "Application is not enabled" => "應用程式未啟用", "Authentication error" => "認證錯誤", @@ -16,12 +16,24 @@ "Files" => "檔案", "Text" => "文字", "Images" => "圖片", -"Set an admin username." => "設置一個管理員用戶名。", -"Set an admin password." => "設置一個管理員密碼。", -"PostgreSQL username and/or password not valid" => "PostgreSQL用戶名和/或密碼無效", -"You need to enter either an existing account or the administrator." => "您必須輸入一個現有的賬戶或管理員", -"Oracle username and/or password not valid" => "Oracle用戶名和/或密碼無效", -"MySQL username and/or password not valid" => "MySQL用戶名和/或密碼無效", +"Set an admin username." => "設定管理員帳號。", +"Set an admin password." => "設定管理員密碼。", +"%s enter the database username." => "%s 輸入資料庫使用者名稱。", +"%s enter the database name." => "%s 輸入資料庫名稱。", +"%s you may not use dots in the database name" => "%s 資料庫名稱不能包含小數點", +"%s set the database host." => "%s 設定資料庫主機。", +"PostgreSQL username and/or password not valid" => "PostgreSQL 用戶名和/或密碼無效", +"You need to enter either an existing account or the administrator." => "您必須輸入一個現有的帳號或管理員帳號。", +"Oracle username and/or password not valid" => "Oracle 用戶名和/或密碼無效", +"MySQL username and/or password not valid" => "MySQL 用戶名和/或密碼無效", +"DB Error: \"%s\"" => "資料庫錯誤:\"%s\"", +"Offending command was: \"%s\"" => "有問題的指令是:\"%s\"", +"MySQL user '%s'@'localhost' exists already." => "MySQL 使用者 '%s'@'localhost' 已經存在。", +"Drop this user from MySQL" => "在 MySQL 移除這個使用者", +"MySQL user '%s'@'%%' already exists" => "MySQL 使用者 '%s'@'%%' 已經存在", +"Drop this user from MySQL." => "在 MySQL 移除這個使用者。", +"Offending command was: \"%s\", name: %s, password: %s" => "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"", +"MS SQL username and/or password not valid: %s" => "MS SQL 使用者和/或密碼無效:%s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", "Please double check the installation guides." => "請參考安裝指南。", "seconds ago" => "幾秒前", @@ -38,6 +50,6 @@ "years ago" => "幾年前", "%s is available. Get more information" => "%s 已經可用。取得 更多資訊", "up to date" => "最新的", -"updates check is disabled" => "檢查更新已停用", +"updates check is disabled" => "更新檢查已停用", "Could not find category \"%s\"" => "找不到分類:\"%s\"" ); From e0027ad78bafbfc8f9bf380b45215397d3de4e4d Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 21 Apr 2013 02:04:42 +0200 Subject: [PATCH 17/55] [tx-robot] updated from transifex --- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e5cecdb8be..77ca5f2a67 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"POT-Creation-Date: 2013-04-21 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9c67558003..f372032481 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"POT-Creation-Date: 2013-04-21 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 26837cd918..b5a4abe087 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"POT-Creation-Date: 2013-04-21 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 864fe393f1..07d06862c9 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"POT-Creation-Date: 2013-04-21 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 770a271e76..637fcc8099 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"POT-Creation-Date: 2013-04-21 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index e5da673209..9b56c7a7a3 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"POT-Creation-Date: 2013-04-21 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 48387dd519..2eb16118a7 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"POT-Creation-Date: 2013-04-21 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 7c6bf8ac15..2364ade035 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"POT-Creation-Date: 2013-04-21 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 6b7f59c9fe..f8679b29f2 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"POT-Creation-Date: 2013-04-21 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 274338879d..361eb343cb 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"POT-Creation-Date: 2013-04-21 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 2a1a9c5903..2239e05fc9 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"POT-Creation-Date: 2013-04-21 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From f6808617b343c0deb953d6251208af716dcab083 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 22 Apr 2013 02:00:20 +0200 Subject: [PATCH 18/55] [tx-robot] updated from transifex --- apps/files/l10n/cy_GB.php | 68 +++++++++++++- apps/files_sharing/l10n/cy_GB.php | 3 + apps/files_trashbin/l10n/cy_GB.php | 6 ++ apps/user_ldap/l10n/cy_GB.php | 1 + l10n/cy_GB/files.po | 139 ++++++++++++++-------------- l10n/cy_GB/files_sharing.po | 13 +-- l10n/cy_GB/files_trashbin.po | 16 ++-- l10n/cy_GB/lib.po | 85 ++++++++--------- l10n/cy_GB/settings.po | 12 +-- l10n/cy_GB/user_ldap.po | 6 +- l10n/ka_GE/core.po | 28 +++--- l10n/ka_GE/files.po | 8 +- l10n/ka_GE/files_trashbin.po | 6 +- l10n/ka_GE/settings.po | 16 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/cy_GB.php | 41 +++++++- settings/l10n/cy_GB.php | 4 + 27 files changed, 298 insertions(+), 176 deletions(-) diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index 2f19a87d57..f56d357362 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -1,7 +1,73 @@ "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli", +"Could not move %s" => "Methwyd symud %s", +"Unable to rename file" => "Methu ailenwi ffeil", +"No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.", +"There is no error, the file uploaded with success" => "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML", +"The uploaded file was only partially uploaded" => "Dim ond yn rhannol y llwythwyd y ffeil i fyny", +"No file was uploaded" => "Ni lwythwyd ffeil i fyny", +"Missing a temporary folder" => "Plygell dros dro yn eisiau", +"Failed to write to disk" => "Methwyd ysgrifennu i'r ddisg", +"Not enough storage available" => "Dim digon o le storio ar gael", +"Invalid directory." => "Cyfeiriadur annilys.", +"Files" => "Ffeiliau", +"Delete permanently" => "Dileu'n barhaol", "Delete" => "Dileu", +"Rename" => "Ailenwi", +"Pending" => "I ddod", +"{new_name} already exists" => "{new_name} yn bodoli'n barod", +"replace" => "amnewid", +"suggest name" => "awgrymu enw", +"cancel" => "diddymu", +"replaced {new_name} with {old_name}" => "newidiwyd {new_name} yn lle {old_name}", +"undo" => "dadwneud", +"perform delete operation" => "cyflawni gweithred dileu", +"1 file uploading" => "1 ffeil yn llwytho i fyny", +"files uploading" => "ffeiliau'n llwytho i fyny", +"'.' is an invalid file name." => "Mae '.' yn enw ffeil annilys.", +"File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'.", +"Your storage is full, files can not be updated or synced anymore!" => "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!", +"Your storage is almost full ({usedSpacePercent}%)" => "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Methu llwytho'ch ffeil i fyny gan ei fod yn gyferiadur neu'n cynnwys 0 beit", +"Not enough space available" => "Dim digon o le ar gael", +"Upload cancelled." => "Diddymwyd llwytho i fyny.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses.", +"URL cannot be empty." => "Does dim hawl cael URL gwag.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud", "Error" => "Gwall", +"Name" => "Enw", +"Size" => "Maint", +"Modified" => "Addaswyd", +"1 folder" => "1 blygell", +"{count} folders" => "{count} plygell", +"1 file" => "1 ffeil", +"{count} files" => "{count} ffeil", +"Upload" => "Llwytho i fyny", +"File handling" => "Trafod ffeiliau", +"Maximum upload size" => "Maint mwyaf llwytho i fyny", +"max. possible: " => "mwyaf. posib:", +"Needed for multi-file and folder downloads." => "Angen ar gyfer llwytho mwy nag un ffeil neu blygell i lawr yr un pryd.", +"Enable ZIP-download" => "Galluogi llwytho i lawr ZIP", +"0 is unlimited" => "0 yn ddiderfyn", +"Maximum input size for ZIP files" => "Maint mewnbynnu mwyaf ffeiliau ZIP", "Save" => "Cadw", +"New" => "Newydd", +"Text file" => "Ffeil destun", +"Folder" => "Plygell", +"From link" => "Dolen o", +"Deleted files" => "Ffeiliau ddilewyd", +"Cancel upload" => "Diddymu llwytho i fyny", +"You don’t have write permissions here." => "Nid oes gennych hawliau ysgrifennu fan hyn.", +"Nothing in here. Upload something!" => "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!", "Download" => "Llwytho i lawr", -"Unshare" => "Dad-rannu" +"Unshare" => "Dad-rannu", +"Upload too large" => "Maint llwytho i fyny'n rhy fawr", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn.", +"Files are being scanned, please wait." => "Arhoswch, mae ffeiliau'n cael eu sganio.", +"Current scanning" => "Sganio cyfredol", +"Upgrading filesystem cache..." => "Uwchraddio storfa system ffeiliau..." ); diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php index 99efe9f734..dec9af4ebe 100644 --- a/apps/files_sharing/l10n/cy_GB.php +++ b/apps/files_sharing/l10n/cy_GB.php @@ -1,6 +1,9 @@ "Cyfrinair", "Submit" => "Cyflwyno", +"%s shared the folder %s with you" => "Rhannodd %s blygell %s â chi", +"%s shared the file %s with you" => "Rhannodd %s ffeil %s â chi", "Download" => "Llwytho i lawr", +"No preview available for" => "Does dim rhagolwg ar gael ar gyfer", "web services under your control" => "gwasanaethau gwe a reolir gennych" ); diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 2f17005337..0867879af2 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -1,4 +1,10 @@ "Gwall", +"Delete permanently" => "Dileu'n barhaol", +"Name" => "Enw", +"1 folder" => "1 blygell", +"{count} folders" => "{count} plygell", +"1 file" => "1 ffeil", +"{count} files" => "{count} ffeil", "Delete" => "Dileu" ); diff --git a/apps/user_ldap/l10n/cy_GB.php b/apps/user_ldap/l10n/cy_GB.php index da107789fb..335e2109c2 100644 --- a/apps/user_ldap/l10n/cy_GB.php +++ b/apps/user_ldap/l10n/cy_GB.php @@ -1,4 +1,5 @@ "Methwyd dileu", "Password" => "Cyfrinair", "Help" => "Cymorth" ); diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 5a9688dff5..21de4f158f 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" -"PO-Revision-Date: 2013-04-17 17:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-22 01:57+0200\n" +"PO-Revision-Date: 2013-04-21 20:50+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,67 +21,67 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Methwyd symud %s" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "Methu ailenwi ffeil" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "" +msgstr "Ni lwythwyd ffeil i fyny" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "" +msgstr "Plygell dros dro yn eisiau" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "" +msgstr "Methwyd ysgrifennu i'r ddisg" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "Dim digon o le storio ar gael" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "Cyfeiriadur annilys." #: appinfo/app.php:12 msgid "Files" -msgstr "" +msgstr "Ffeiliau" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "Dileu'n barhaol" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" @@ -88,100 +89,100 @@ msgstr "Dileu" #: js/fileactions.js:193 msgid "Rename" -msgstr "" +msgstr "Ailenwi" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "" +msgstr "I ddod" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} yn bodoli'n barod" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "" +msgstr "amnewid" #: js/filelist.js:252 msgid "suggest name" -msgstr "" +msgstr "awgrymu enw" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "" +msgstr "diddymu" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "newidiwyd {new_name} yn lle {old_name}" #: js/filelist.js:299 msgid "undo" -msgstr "" +msgstr "dadwneud" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "cyflawni gweithred dileu" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "" +msgstr "1 ffeil yn llwytho i fyny" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "ffeiliau'n llwytho i fyny" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "Mae '.' yn enw ffeil annilys." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "Does dim hawl cael enw ffeil gwag." #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Methu llwytho'ch ffeil i fyny gan ei fod yn gyferiadur neu'n cynnwys 0 beit" #: js/files.js:272 msgid "Not enough space available" -msgstr "" +msgstr "Dim digon o le ar gael" #: js/files.js:312 msgid "Upload cancelled." -msgstr "" +msgstr "Diddymwyd llwytho i fyny." #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." #: js/files.js:481 msgid "URL cannot be empty." -msgstr "" +msgstr "Does dim hawl cael URL gwag." #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" @@ -189,63 +190,63 @@ msgstr "Gwall" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "" +msgstr "Enw" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "" +msgstr "Maint" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "" +msgstr "Addaswyd" #: js/files.js:893 msgid "1 folder" -msgstr "" +msgstr "1 blygell" #: js/files.js:895 msgid "{count} folders" -msgstr "" +msgstr "{count} plygell" #: js/files.js:903 msgid "1 file" -msgstr "" +msgstr "1 ffeil" #: js/files.js:905 msgid "{count} files" -msgstr "" +msgstr "{count} ffeil" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "" +msgstr "Llwytho i fyny" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Trafod ffeiliau" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Maint mwyaf llwytho i fyny" #: templates/admin.php:10 msgid "max. possible: " -msgstr "" +msgstr "mwyaf. posib:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Angen ar gyfer llwytho mwy nag un ffeil neu blygell i lawr yr un pryd." #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "" +msgstr "Galluogi llwytho i lawr ZIP" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "0 yn ddiderfyn" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Maint mewnbynnu mwyaf ffeiliau ZIP" #: templates/admin.php:26 msgid "Save" @@ -253,35 +254,35 @@ msgstr "Cadw" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Newydd" #: templates/index.php:10 msgid "Text file" -msgstr "" +msgstr "Ffeil destun" #: templates/index.php:12 msgid "Folder" -msgstr "" +msgstr "Plygell" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Dolen o" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Ffeiliau ddilewyd" #: templates/index.php:48 msgid "Cancel upload" -msgstr "" +msgstr "Diddymu llwytho i fyny" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" #: templates/index.php:76 msgid "Download" @@ -293,22 +294,22 @@ msgstr "Dad-rannu" #: templates/index.php:108 msgid "Upload too large" -msgstr "" +msgstr "Maint llwytho i fyny'n rhy fawr" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." #: templates/index.php:118 msgid "Current scanning" -msgstr "" +msgstr "Sganio cyfredol" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Uwchraddio storfa system ffeiliau..." diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 3b6f94ed70..01a7b7ff6e 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" -"PO-Revision-Date: 2013-04-17 17:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 15:00+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,12 +29,12 @@ msgstr "Cyflwyno" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "Rhannodd %s blygell %s â chi" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "Rhannodd %s ffeil %s â chi" #: templates/public.php:19 templates/public.php:43 msgid "Download" @@ -41,7 +42,7 @@ msgstr "Llwytho i lawr" #: templates/public.php:40 msgid "No preview available for" -msgstr "" +msgstr "Does dim rhagolwg ar gael ar gyfer" #: templates/public.php:50 msgid "web services under your control" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 3797939ab1..047c05e7f7 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" -"PO-Revision-Date: 2013-04-17 17:20+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 20:50+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "Dileu'n barhaol" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "" +msgstr "Enw" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "" +msgstr "1 blygell" #: js/trash.js:186 msgid "{count} folders" -msgstr "" +msgstr "{count} plygell" #: js/trash.js:194 msgid "1 file" -msgstr "" +msgstr "1 ffeil" #: js/trash.js:196 msgid "{count} files" -msgstr "" +msgstr "{count} ffeil" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index ac97a0a055..8a34f9cc6b 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 19:21+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,91 +44,91 @@ msgstr "Gweinyddu" #: files.php:209 msgid "ZIP download is turned off." -msgstr "" +msgstr "Mae llwytho ZIP wedi ei ddiffodd." #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Mae angen llwytho ffeiliau i lawr fesul un." #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "" +msgstr "Nôl i Ffeiliau" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." #: helper.php:228 msgid "couldn't be determined" -msgstr "" +msgstr "methwyd pennu" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Nid yw'r pecyn wedi'i alluogi" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "" +msgstr "Gwall dilysu" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Ffeiliau" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Testun" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Delweddau" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "Creu enw defnyddiwr i'r gweinyddwr." #: setup.php:37 msgid "Set an admin password." -msgstr "" +msgstr "Gosod cyfrinair y gweinyddwr." #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s rhowch enw defnyddiwr y gronfa ddata." #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s rhowch enw'r gronfa ddata." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s gosod gwesteiwr y gronfa ddata." #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "Enw a/neu gyfrinair PostgreSQL annilys" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Enw a/neu gyfrinair Oracle annilys" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "Enw a/neu gyfrinair MySQL annilys" #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -135,53 +136,53 @@ msgstr "" #: setup.php:614 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "Gwall DB: \"%s\"" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"" #: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes." #: setup.php:304 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Gollwng y defnyddiwr hwn o MySQL" #: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli" #: setup.php:310 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Gollwng y defnyddiwr hwn o MySQL." #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "Enw a/neu gyfrinair MS SQL annilys: %s" #: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Gwiriwch y canllawiau gosod eto." #: template.php:113 msgid "seconds ago" @@ -194,7 +195,7 @@ msgstr "1 munud yn ôl" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d munud yn ôl" #: template.php:116 msgid "1 hour ago" @@ -203,7 +204,7 @@ msgstr "1 awr yn ôl" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d awr yn ôl" #: template.php:118 msgid "today" @@ -216,7 +217,7 @@ msgstr "ddoe" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d diwrnod yn ôl" #: template.php:121 msgid "last month" @@ -225,7 +226,7 @@ msgstr "mis diwethaf" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d mis yn ôl" #: template.php:123 msgid "last year" @@ -238,17 +239,17 @@ msgstr "blwyddyn yn ôl" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s ar gael. Mwy o wybodaeth" #: updater.php:81 msgid "up to date" -msgstr "" +msgstr "cyfredol" #: updater.php:84 msgid "updates check is disabled" -msgstr "" +msgstr "gwirio am ddiweddariadau wedi'i analluogi" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Methu canfod categori \"%s\"" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index ebf288587e..9612ffbaf6 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-17 21:00+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 20:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgstr "" #: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "" +msgstr "Gwall dilysu" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" @@ -126,7 +126,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "" +msgstr "dadwneud" #: js/users.js:75 msgid "Unable to remove user" @@ -186,12 +186,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Gwiriwch y canllawiau gosod eto." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 9d260f933e..60042b502e 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 19:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "" +msgstr "Methwyd dileu" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ea4a85683b..17e56b13b3 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -521,37 +521,37 @@ msgstr "დამატებითი ფუნქციები" msgid "Data folder" msgstr "მონაცემთა საქაღალდე" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "მონაცემთა ბაზის კონფიგურირება" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "გამოყენებული იქნება" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "მონაცემთა ბაზის მომხმარებელი" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "მონაცემთა ბაზის პაროლი" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "მონაცემთა ბაზის სახელი" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "ბაზის ცხრილის ზომა" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "მონაცემთა ბაზის ჰოსტი" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index d0e564db20..8750ca1cf1 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-22 01:57+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 3ed31fdce6..5938528d4d 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 46d26abbd5..899e32ba84 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -314,19 +314,19 @@ msgstr "ლოგი" msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "naklebi" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index f372032481..1c2cb78e3e 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index b5a4abe087..4180cecc58 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 07d06862c9..8baa427086 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 637fcc8099..ce05d5b69e 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 9b56c7a7a3..f5e298d741 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 2eb16118a7..3a8c605b09 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 2364ade035..b92c03f017 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:03+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f8679b29f2..9ecbcec1fc 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:03+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 361eb343cb..94da630dd7 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 2239e05fc9..ed36a21e7b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-21 02:02+0200\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 9b087b4a2e..6cf88c15cc 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -5,12 +5,51 @@ "Users" => "Defnyddwyr", "Apps" => "Pecynnau", "Admin" => "Gweinyddu", +"ZIP download is turned off." => "Mae llwytho ZIP wedi ei ddiffodd.", +"Files need to be downloaded one by one." => "Mae angen llwytho ffeiliau i lawr fesul un.", +"Back to Files" => "Nôl i Ffeiliau", +"Selected files too large to generate zip file." => "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip.", +"couldn't be determined" => "methwyd pennu", +"Application is not enabled" => "Nid yw'r pecyn wedi'i alluogi", +"Authentication error" => "Gwall dilysu", +"Token expired. Please reload page." => "Tocyn wedi dod i ben. Ail-lwythwch y dudalen.", +"Files" => "Ffeiliau", +"Text" => "Testun", +"Images" => "Delweddau", +"Set an admin username." => "Creu enw defnyddiwr i'r gweinyddwr.", +"Set an admin password." => "Gosod cyfrinair y gweinyddwr.", +"%s enter the database username." => "%s rhowch enw defnyddiwr y gronfa ddata.", +"%s enter the database name." => "%s rhowch enw'r gronfa ddata.", +"%s you may not use dots in the database name" => "%s does dim hawl defnyddio dot yn enw'r gronfa ddata", +"%s set the database host." => "%s gosod gwesteiwr y gronfa ddata.", +"PostgreSQL username and/or password not valid" => "Enw a/neu gyfrinair PostgreSQL annilys", +"You need to enter either an existing account or the administrator." => "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr.", +"Oracle username and/or password not valid" => "Enw a/neu gyfrinair Oracle annilys", +"MySQL username and/or password not valid" => "Enw a/neu gyfrinair MySQL annilys", +"DB Error: \"%s\"" => "Gwall DB: \"%s\"", +"Offending command was: \"%s\"" => "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes.", +"Drop this user from MySQL" => "Gollwng y defnyddiwr hwn o MySQL", +"MySQL user '%s'@'%%' already exists" => "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli", +"Drop this user from MySQL." => "Gollwng y defnyddiwr hwn o MySQL.", +"Offending command was: \"%s\", name: %s, password: %s" => "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s", +"MS SQL username and/or password not valid: %s" => "Enw a/neu gyfrinair MS SQL annilys: %s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", +"Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", "seconds ago" => "eiliad yn ôl", "1 minute ago" => "1 munud yn ôl", +"%d minutes ago" => "%d munud yn ôl", "1 hour ago" => "1 awr yn ôl", +"%d hours ago" => "%d awr yn ôl", "today" => "heddiw", "yesterday" => "ddoe", +"%d days ago" => "%d diwrnod yn ôl", "last month" => "mis diwethaf", +"%d months ago" => "%d mis yn ôl", "last year" => "y llynedd", -"years ago" => "blwyddyn yn ôl" +"years ago" => "blwyddyn yn ôl", +"%s is available. Get more information" => "%s ar gael. Mwy o wybodaeth", +"up to date" => "cyfredol", +"updates check is disabled" => "gwirio am ddiweddariadau wedi'i analluogi", +"Could not find category \"%s\"" => "Methu canfod categori \"%s\"" ); diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php index 5aaa954463..eea702bde9 100644 --- a/settings/l10n/cy_GB.php +++ b/settings/l10n/cy_GB.php @@ -1,8 +1,12 @@ "Gwall dilysu", "Invalid request" => "Cais annilys", "Error" => "Gwall", +"undo" => "dadwneud", "Delete" => "Dileu", "Security Warning" => "Rhybudd Diogelwch", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", +"Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", "Password" => "Cyfrinair", "New password" => "Cyfrinair newydd", "Other" => "Arall" From 5942d5aeac174db001d76bcad6768cfc6dd6768a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Apr 2013 20:32:40 +0200 Subject: [PATCH 19/55] Improve error message if user creation fails during setup --- lib/setup.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/setup.php b/lib/setup.php index 769fae1165..c330729298 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -187,6 +187,7 @@ class OC_Setup { unlink("$datadir/owncloud.db"); } //in case of sqlite, we can always fill the database + error_log("creating sqlite db"); OC_DB::createDbFromStructure('db_structure.xml'); } @@ -195,7 +196,7 @@ class OC_Setup { OC_User::createUser($username, $password); } catch(Exception $exception) { - $error[] = $exception->getMessage(); + $error[] = 'Error while trying to create admin user: ' . $exception->getMessage(); } if(count($error) == 0) { From 7c1a4d2f57898d84d9ecdca47a72915b9edeb3f8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Apr 2013 20:34:00 +0200 Subject: [PATCH 20/55] Fix raiseError call in the MDB2 sqlite3 driver --- lib/MDB2/Driver/sqlite3.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index 8f057cfb6e..aef0eab9bf 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -892,10 +892,10 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common $connection = $this->getConnection(); if (PEAR::isError($connection)) { return $connection; - } + } $statement =$this->connection->prepare($query); if (!$statement) { - return $this->db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, + return $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, 'unable to prepare statement: '.$query); } From 3c90625ef114aa8005ab675c614dfeb919a6ac84 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Apr 2013 21:23:12 +0200 Subject: [PATCH 21/55] Files: also check if the source path is valid when doing a rename or copy operation --- lib/files/view.php | 38 +++++++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 15 deletions(-) diff --git a/lib/files/view.php b/lib/files/view.php index f607bb59aa..0da104c107 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -245,13 +245,13 @@ class View { if (!is_null($mtime) and !is_numeric($mtime)) { $mtime = strtotime($mtime); } - + $hooks = array('touch'); - + if (!$this->file_exists($path)) { $hooks[] = 'write'; } - + return $this->basicOperation('touch', $path, $hooks, $mtime); } @@ -263,11 +263,12 @@ class View { if (is_resource($data)) { //not having to deal with streams in file_put_contents makes life easier $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path)); if (\OC_FileProxy::runPreProxies('file_put_contents', $absolutePath, $data) - && Filesystem::isValidPath($path)) { + && Filesystem::isValidPath($path) + ) { $path = $this->getRelativePath($absolutePath); $exists = $this->file_exists($path); $run = true; - if ($this->fakeRoot == Filesystem::getRoot() && ! Cache\Scanner::isIgnoredFile($path) ) { + if ($this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isIgnoredFile($path)) { if (!$exists) { \OC_Hook::emit( Filesystem::CLASSNAME, @@ -295,7 +296,7 @@ class View { list ($count, $result) = \OC_Helper::streamCopy($data, $target); fclose($target); fclose($data); - if ($this->fakeRoot == Filesystem::getRoot() && ! Cache\Scanner::isIgnoredFile($path) ) { + if ($this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isIgnoredFile($path)) { if (!$exists) { \OC_Hook::emit( Filesystem::CLASSNAME, @@ -335,8 +336,11 @@ class View { $postFix2 = (substr($path2, -1, 1) === '/') ? '/' : ''; $absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($path1)); $absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($path2)); - if (\OC_FileProxy::runPreProxies('rename', $absolutePath1, $absolutePath2) - and Filesystem::isValidPath($path2)) { + if ( + \OC_FileProxy::runPreProxies('rename', $absolutePath1, $absolutePath2) + and Filesystem::isValidPath($path2) + and Filesystem::isValidPath($path1) + ) { $path1 = $this->getRelativePath($absolutePath1); $path2 = $this->getRelativePath($absolutePath2); @@ -396,7 +400,11 @@ class View { $postFix2 = (substr($path2, -1, 1) === '/') ? '/' : ''; $absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($path1)); $absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($path2)); - if (\OC_FileProxy::runPreProxies('copy', $absolutePath1, $absolutePath2) and Filesystem::isValidPath($path2)) { + if ( + \OC_FileProxy::runPreProxies('copy', $absolutePath1, $absolutePath2) + and Filesystem::isValidPath($path2) + and Filesystem::isValidPath($path1) + ) { $path1 = $this->getRelativePath($absolutePath1); $path2 = $this->getRelativePath($absolutePath2); @@ -627,7 +635,7 @@ class View { private function runHooks($hooks, $path, $post = false) { $prefix = ($post) ? 'post_' : ''; $run = true; - if (Filesystem::$loaded and $this->fakeRoot == Filesystem::getRoot() && ! Cache\Scanner::isIgnoredFile($path) ) { + if (Filesystem::$loaded and $this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isIgnoredFile($path)) { foreach ($hooks as $hook) { if ($hook != 'read') { \OC_Hook::emit( @@ -931,11 +939,11 @@ class View { } /** - * Get the owner for a file or folder - * - * @param string $path - * @return string - */ + * Get the owner for a file or folder + * + * @param string $path + * @return string + */ public function getOwner($path) { return $this->basicOperation('getOwner', $path); } From 1507d1ef26ec92afbb3d603f9e0e2254dbd7d6c7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 22 Apr 2013 21:54:25 +0200 Subject: [PATCH 22/55] Files: Fix XSS when creating dropshadow --- apps/files/js/files.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 7e3caf71a0..a2d17fae7d 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -757,9 +757,9 @@ var createDragShadow = function(event){ var dir=$('#dir').val(); $(selectedFiles).each(function(i,elem){ - var newtr = $('' - +''+elem.name+''+humanFileSize(elem.size)+'' - +''); + var newtr = $('').attr('data-dir', dir).attr('data-filename', elem.name); + newtr.append($('').addClass('filename').text(elem.name)); + newtr.append($('').addClass('size').text(humanFileSize(elem.size))); tbody.append(newtr); if (elem.type === 'dir') { newtr.find('td.filename').attr('style','background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')'); From 6e78c4fcc04820717afe5cdb55112d4a22d6f2dc Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 23 Apr 2013 00:26:40 +0300 Subject: [PATCH 23/55] Disallow URLs containing a @ --- lib/base.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/base.php b/lib/base.php index 7b0967df9f..a32ed46090 100644 --- a/lib/base.php +++ b/lib/base.php @@ -631,8 +631,13 @@ class OC { // Handle redirect URL for logged in users if (isset($_REQUEST['redirect_url']) && OC_User::isLoggedIn()) { $location = OC_Helper::makeURLAbsolute(urldecode($_REQUEST['redirect_url'])); - header('Location: ' . $location); - return; + + // Deny the redirect if the URL contains a @ + // This prevents unvalidated redirects like ?redirect_url=:user@domain.com + if (strpos($location, '@') === FALSE) { + header('Location: ' . $location); + return; + } } // Handle WebDAV if ($_SERVER['REQUEST_METHOD'] == 'PROPFIND') { From b066c0ff4480c3054630cdd846eda0043ee41d52 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 23 Apr 2013 01:00:27 +0200 Subject: [PATCH 24/55] LDAP: reset user/group-config association only after exists-check, may performance in some cases --- apps/user_ldap/group_proxy.php | 11 +++++++++-- apps/user_ldap/user_proxy.php | 11 +++++++++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/apps/user_ldap/group_proxy.php b/apps/user_ldap/group_proxy.php index 68d2efe387..75e7cd4633 100644 --- a/apps/user_ldap/group_proxy.php +++ b/apps/user_ldap/group_proxy.php @@ -76,8 +76,15 @@ class Group_Proxy extends lib\Proxy implements \OCP\GroupInterface { if(isset($this->backends[$prefix])) { $result = call_user_func_array(array($this->backends[$prefix], $method), $parameters); if(!$result) { - //not found here, reset cache to null - $this->writeToCache($cacheKey, null); + //not found here, reset cache to null if group vanished + //because sometimes methods return false with a reason + $groupExists = call_user_func_array( + array($this->backends[$prefix], 'groupExists'), + array($gid) + ); + if(!$groupExists) { + $this->writeToCache($cacheKey, null); + } } return $result; } diff --git a/apps/user_ldap/user_proxy.php b/apps/user_ldap/user_proxy.php index 6a75bae381..7e5b9045df 100644 --- a/apps/user_ldap/user_proxy.php +++ b/apps/user_ldap/user_proxy.php @@ -76,8 +76,15 @@ class User_Proxy extends lib\Proxy implements \OCP\UserInterface { if(isset($this->backends[$prefix])) { $result = call_user_func_array(array($this->backends[$prefix], $method), $parameters); if(!$result) { - //not found here, reset cache to null - $this->writeToCache($cacheKey, null); + //not found here, reset cache to null if user vanished + //because sometimes methods return false with a reason + $userExists = call_user_func_array( + array($this->backends[$prefix], 'userExists'), + array($uid) + ); + if(!$userExists) { + $this->writeToCache($cacheKey, null); + } } return $result; } From 05ab9d2de7f2c5181eda2174a2e2adb1cc214196 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 23 Apr 2013 02:00:31 +0200 Subject: [PATCH 25/55] [tx-robot] updated from transifex --- apps/files_external/l10n/tr.php | 2 + apps/files_trashbin/l10n/cy_GB.php | 10 +++- apps/user_webdavauth/l10n/tr.php | 3 +- core/l10n/tr.php | 2 +- l10n/cs_CZ/core.po | 52 ++++++++++---------- l10n/cy_GB/files_trashbin.po | 23 ++++----- l10n/es/core.po | 70 +++++++++++++-------------- l10n/templates/core.pot | 20 ++++---- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 44 ++++++++--------- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 61 +++++++++++------------ l10n/tr/files_external.po | 17 ++++--- l10n/tr/lib.po | 75 +++++++++++++++-------------- l10n/tr/user_ldap.po | 8 +-- l10n/tr/user_webdavauth.po | 15 +++--- lib/l10n/tr.php | 10 ++++ 24 files changed, 228 insertions(+), 202 deletions(-) diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 79dc3a8589..def2e35ebf 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -4,6 +4,8 @@ "Grant access" => "Erişim sağlandı", "Please provide a valid Dropbox app key and secret." => "Lütfen Dropbox app key ve secret temin ediniz", "Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, ", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin.", "External Storage" => "Harici Depolama", "Folder name" => "Dizin ismi", "External storage" => "Harici Depolama", diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 0867879af2..055e8d8654 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -1,10 +1,18 @@ "Methwyd dileu %s yn barhaol", +"Couldn't restore %s" => "Methwyd adfer %s", +"perform restore operation" => "gweithrediad adfer", "Error" => "Gwall", +"delete file permanently" => "dileu ffeil yn barhaol", "Delete permanently" => "Dileu'n barhaol", "Name" => "Enw", +"Deleted" => "Wedi dileu", "1 folder" => "1 blygell", "{count} folders" => "{count} plygell", "1 file" => "1 ffeil", "{count} files" => "{count} ffeil", -"Delete" => "Dileu" +"Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!", +"Restore" => "Adfer", +"Delete" => "Dileu", +"Deleted Files" => "Ffeiliau Ddilewyd" ); diff --git a/apps/user_webdavauth/l10n/tr.php b/apps/user_webdavauth/l10n/tr.php index 4a2f6d2403..c495a39dce 100644 --- a/apps/user_webdavauth/l10n/tr.php +++ b/apps/user_webdavauth/l10n/tr.php @@ -1,4 +1,5 @@ "WebDAV Kimlik doğrulaması", -"URL: http://" => "URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud deneyme kullanicin URLe gonderecek. Bu toplan cepaplama muayene edecek ve status kodeci HTTPden 401 ve 403 deneyi gecerli ve hepsi baska cevaplamari mantekli gibi yorumlacak. " ); diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 891cfb6b84..d6b25b4093 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -101,7 +101,7 @@ "Users" => "Kullanıcılar", "Apps" => "Uygulamalar", "Admin" => "Yönetici", -"Help" => "Yardı", +"Help" => "Yardım", "Access forbidden" => "Erişim yasaklı", "Cloud not found" => "Bulut bulunamadı", "Edit categories" => "Kategorileri düzenle", diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index d9d28259e3..0db794fe6c 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jan Krejci , 2011. -# Martin , 2011-2012. -# Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012-2013. +# Jan Krejci , 2011 +# Martin , 2011-2012 +# Michal Hrušecký , 2012 +# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 11:21+0000\n" +"Last-Translator: cernydav \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -297,7 +297,7 @@ msgstr "Sdílet s odkazem" msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Heslo" @@ -413,7 +413,7 @@ msgid "Request failed!" msgstr "Požadavek selhal." #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Uživatelské jméno" @@ -523,37 +523,37 @@ msgstr "Pokročilé" msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Dokončit nastavení" @@ -565,33 +565,33 @@ msgstr "webové služby pod Vaší kontrolou" msgid "Log out" msgstr "Odhlásit se" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatické přihlášení odmítnuto." -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "zapamatovat" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Přihlásit" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternativní přihlášení" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 047c05e7f7..5e9bb4d912 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" -"PO-Revision-Date: 2013-04-21 20:50+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 21:10+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,16 +21,16 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Methwyd dileu %s yn barhaol" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Methwyd adfer %s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "" +msgstr "gweithrediad adfer" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" @@ -37,7 +38,7 @@ msgstr "Gwall" #: js/trash.js:34 msgid "delete file permanently" -msgstr "" +msgstr "dileu ffeil yn barhaol" #: js/trash.js:121 msgid "Delete permanently" @@ -49,7 +50,7 @@ msgstr "Enw" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "Wedi dileu" #: js/trash.js:184 msgid "1 folder" @@ -69,11 +70,11 @@ msgstr "{count} ffeil" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "Does dim byd yma. Mae eich bin sbwriel yn wag!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "Adfer" #: templates/index.php:30 templates/index.php:31 msgid "Delete" @@ -81,4 +82,4 @@ msgstr "Dileu" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Ffeiliau Ddilewyd" diff --git a/l10n/es/core.po b/l10n/es/core.po index 4eaac95f2c..79e7618ee7 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -3,26 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Felix Liberio , 2013. -# , 2012. -# Javier Llorente , 2012. -# , 2013. -# , 2011-2013. -# , 2012. -# oSiNaReF <>, 2012. -# Raul Fernandez Garcia , 2012. -# , 2012. -# , 2011. -# Rubén Trujillo , 2012. -# , 2011-2012. -# , 2012. -# Vladimir Martinez Sierra , 2013. +# felix.liberio , 2013 +# Javierkaiser , 2012 +# Javier Llorente , 2012 +# juanman , 2013 +# juanman , 2011-2013 +# malmirk , 2012 +# oSiNaReF <>, 2012 +# Raul Fernandez Garcia , 2012 +# rodrigo.calvo , 2012 +# Romain DEP. , 2011 +# Rubén Trujillo , 2012 +# xsergiolpx , 2011-2012 +# scambra , 2012 +# msvladimir , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -307,7 +307,7 @@ msgstr "Compartir con enlace" msgid "Password protect" msgstr "Protegido por contraseña" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Contraseña" @@ -423,7 +423,7 @@ msgid "Request failed!" msgstr "Pedido fallado!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nombre de usuario" @@ -533,37 +533,37 @@ msgstr "Avanzado" msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Completar la instalación" @@ -575,33 +575,33 @@ msgstr "servicios web bajo tu control" msgid "Log out" msgstr "Salir" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "¡Inicio de sesión automático rechazado!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "recuérdame" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Nombre de usuarios alternativos" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 30b3177b59..35b43eb24d 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -293,7 +293,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "" @@ -409,7 +409,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "" @@ -561,33 +561,33 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 1c2cb78e3e..89a7db1607 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:57+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4180cecc58..474450fd7d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:57+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 8baa427086..55b915b8c1 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index ce05d5b69e..6da4a5a9c1 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index f5e298d741..6f7cd8036e 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 3a8c605b09..40c2e572fb 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index b92c03f017..cf80a35b29 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:854 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:855 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 9ecbcec1fc..1b32c3ac1b 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 94da630dd7..bdb389c0b3 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index ed36a21e7b..98ae8159bd 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 78704bd88e..943cc42487 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Aranel Surion , 2011, 2012. -# Caner Başaran , 2012. -# H.Oktay Tefenli , 2013. -# , 2012. -# ismail yenigul , 2013. -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# Aranel Surion , 2011, 2012 +# Caner Başaran , 2012 +# otefenli , 2013 +# ifthenelse , 2013 +# alpere , 2012 +# ismail yenigül , 2013 +# Necdet Yücel , 2012 +# atakan96 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 07:40+0000\n" +"Last-Translator: ifthenelse \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -300,7 +301,7 @@ msgstr "Bağlantı ile paylaş" msgid "Password protect" msgstr "Şifre korunması" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Parola" @@ -416,7 +417,7 @@ msgid "Request failed!" msgstr "İstek reddedildi!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Kullanıcı adı" @@ -458,7 +459,7 @@ msgstr "Yönetici" #: strings.php:9 msgid "Help" -msgstr "Yardı" +msgstr "Yardım" #: templates/403.php:12 msgid "Access forbidden" @@ -526,37 +527,37 @@ msgstr "Gelişmiş" msgid "Data folder" msgstr "Veri klasörü" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Kurulumu tamamla" @@ -568,33 +569,33 @@ msgstr "kontrolünüzdeki web servisleri" msgid "Log out" msgstr "Çıkış yap" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Otomatik oturum açma reddedildi!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Yakın zamanda parolanızı değiştirmedi iseniz hesabınız riske girebilir." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Hesabınızı korumak için lütfen parolanızı değiştirin." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "hatırla" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Giriş yap" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternatif Girişler" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index f539b2414c..a52ac427e9 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Caner Başaran , 2013. -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# Caner Başaran , 2013 +# Necdet Yücel , 2012 +# atakan96 , 2013 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 15:10+0000\n" +"Last-Translator: KAT.RAT12 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,14 +45,14 @@ msgstr "Google Drive depo yapılandırma hatası" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, " #: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index d9fca3e2a1..6f7a085617 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -5,13 +5,14 @@ # Translators: # ismail yenigül , 2013 # Necdet Yücel , 2012 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 16:03+0000\n" +"Last-Translator: KAT.RAT12 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,11 +90,11 @@ msgstr "Resimler" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "Bir adi kullanici vermek. " #: setup.php:37 msgid "Set an admin password." -msgstr "" +msgstr "Parola yonetici birlemek. " #: setup.php:55 #, php-format @@ -115,72 +116,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL adi kullanici ve/veya parola yasal degildir. " -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Bir konto veya kullanici birlemek ihtiyacin. " -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "DB Hata: ''%s''" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "Komut rahasiz ''%s''. " #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "MySQL kullanici '%s @local host zatan var. " + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "Bu kullanici MySQLden list disari koymak. " #: setup.php:310 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "MySQL kullanici '%s @ % % zaten var (zaten yazili)" + +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:854 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: setup.php:854 +#: setup.php:855 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 8f3ef99b51..fa5df1f463 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# Necdet Yücel , 2012 +# atakan96 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 07:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index 5c02bf6a89..a5b58c7648 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# alpere , 2012 +# Necdet Yücel , 2012 +# atakan96 , 2013 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 20:10+0000\n" +"Last-Translator: KAT.RAT12 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,4 +34,4 @@ msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloud deneyme kullanicin URLe gonderecek. Bu toplan cepaplama muayene edecek ve status kodeci HTTPden 401 ve 403 deneyi gecerli ve hepsi baska cevaplamari mantekli gibi yorumlacak. " diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 84278f6d4c..4a8292989a 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -16,6 +16,16 @@ "Files" => "Dosyalar", "Text" => "Metin", "Images" => "Resimler", +"Set an admin username." => "Bir adi kullanici vermek. ", +"Set an admin password." => "Parola yonetici birlemek. ", +"PostgreSQL username and/or password not valid" => "PostgreSQL adi kullanici ve/veya parola yasal degildir. ", +"You need to enter either an existing account or the administrator." => "Bir konto veya kullanici birlemek ihtiyacin. ", +"Oracle username and/or password not valid" => "Adi klullanici ve/veya parola Oracle mantikli değildir. ", +"DB Error: \"%s\"" => "DB Hata: ''%s''", +"Offending command was: \"%s\"" => "Komut rahasiz ''%s''. ", +"MySQL user '%s'@'localhost' exists already." => "MySQL kullanici '%s @local host zatan var. ", +"Drop this user from MySQL" => "Bu kullanici MySQLden list disari koymak. ", +"MySQL user '%s'@'%%' already exists" => "MySQL kullanici '%s @ % % zaten var (zaten yazili)", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "seconds ago" => "saniye önce", From f1a63254fbaaf3c82f7f921ca7a9f8e68b122212 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Tue, 23 Apr 2013 11:06:28 +0200 Subject: [PATCH 26/55] Fix ugly error style on install By initializing the template engine first we can show the 'Can't write into config directory 'config'' error in a nice way instead of plain unstyled HTML. --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index 7b0967df9f..852d3a53a0 100644 --- a/lib/base.php +++ b/lib/base.php @@ -467,11 +467,11 @@ class OC { stream_wrapper_register('close', 'OC\Files\Stream\Close'); stream_wrapper_register('oc', 'OC\Files\Stream\OC'); + self::initTemplateEngine(); self::checkConfig(); self::checkInstalled(); self::checkSSL(); self::initSession(); - self::initTemplateEngine(); $errors = OC_Util::checkServer(); if (count($errors) > 0) { From 6141b24d9629ce181a86bbc7b6bb1d2c13c28154 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Tue, 23 Apr 2013 12:36:30 +0200 Subject: [PATCH 27/55] External Storage: Check for curl in PHP If no curl is found, disable the storage that needs it. --- apps/files_external/lib/config.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 01462cb6f8..4cb9b7c8ec 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -70,7 +70,7 @@ class OC_Mount_Config { 'root' => '&Root', 'secure' => '!Secure ftps://')); - $backends['\OC\Files\Storage\Google']=array( + if(OC_Mount_Config::checkcurl()) $backends['\OC\Files\Storage\Google']=array( 'backend' => 'Google Drive', 'configuration' => array( 'configured' => '#configured', @@ -96,7 +96,7 @@ class OC_Mount_Config { 'share' => 'Share', 'root' => '&Root')); - $backends['\OC\Files\Storage\DAV']=array( + if(OC_Mount_Config::checkcurl()) $backends['\OC\Files\Storage\DAV']=array( 'backend' => 'ownCloud / WebDAV', 'configuration' => array( 'host' => 'URL', @@ -414,6 +414,13 @@ class OC_Mount_Config { } } + /** + * check if curl is installed + */ + public static function checkcurl() { + return (function_exists('curl_init')); + } + /** * check dependencies */ @@ -426,6 +433,9 @@ class OC_Mount_Config { if(!OC_Mount_Config::checkphpftp()) { $txt.=$l->t('Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it.').'
'; } + if(!OC_Mount_Config::checkcurl()) { + $txt.=$l->t('Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it.').'
'; + } return($txt); } From b9b2e0269a2816d8708dcbaf82467d6200c830af Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 23 Apr 2013 14:39:28 +0200 Subject: [PATCH 28/55] fix logical issue while retrieving log via ajax --- settings/ajax/getlog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/ajax/getlog.php b/settings/ajax/getlog.php index 141457e72a..02f4f37fd6 100644 --- a/settings/ajax/getlog.php +++ b/settings/ajax/getlog.php @@ -15,4 +15,4 @@ $data = array(); OC_JSON::success(array( "data" => $entries, - "remain"=>(count(OC_Log_Owncloud::getEntries(1, $offset + $offset)) != 0) ? true : false)); + "remain"=>(count(OC_Log_Owncloud::getEntries(1, $offset + $count)) != 0) ? true : false)); From e78a4640022c9b5ce833f34de118dea4608cc560 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 23 Apr 2013 14:56:33 +0200 Subject: [PATCH 29/55] remove log sort in admin section doesn't work anymore, because now the datetime is saved as string (ref #2975) --- settings/admin.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/settings/admin.php b/settings/admin.php index c784880309..035cef5bf9 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -20,11 +20,6 @@ $htaccessworking=OC_Util::ishtaccessworking(); $entries=OC_Log_Owncloud::getEntries(3); $entriesremain=(count(OC_Log_Owncloud::getEntries(4)) > 3)?true:false; -function compareEntries($a, $b) { - return $b->time - $a->time; -} -usort($entries, 'compareEntries'); - $tmpl->assign('loglevel', OC_Config::getValue( "loglevel", 2 )); $tmpl->assign('entries', $entries); $tmpl->assign('entriesremain', $entriesremain); From 8fab7d5afb099a99aab81df7b0f44e3a1eb0016f Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 23 Apr 2013 17:59:31 +0200 Subject: [PATCH 30/55] fix syntax layout --- settings/ajax/getlog.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/settings/ajax/getlog.php b/settings/ajax/getlog.php index 02f4f37fd6..da69a2863b 100644 --- a/settings/ajax/getlog.php +++ b/settings/ajax/getlog.php @@ -13,6 +13,9 @@ $offset=(isset($_GET['offset']))?$_GET['offset']:0; $entries=OC_Log_Owncloud::getEntries($count, $offset); $data = array(); -OC_JSON::success(array( - "data" => $entries, - "remain"=>(count(OC_Log_Owncloud::getEntries(1, $offset + $count)) != 0) ? true : false)); +OC_JSON::success( + array( + "data" => $entries, + "remain"=>(count(OC_Log_Owncloud::getEntries(1, $offset + $count)) != 0) ? true : false + ) +); From 7312cbec91e5e034c771ad7a473c744169d449c8 Mon Sep 17 00:00:00 2001 From: David Reagan Date: Tue, 23 Apr 2013 12:45:12 -0700 Subject: [PATCH 31/55] Made saving the display name work the same way as the email address. Fixed a few comparison operators. Increased the fadeOut time for the success and error messages. --- settings/ajax/changedisplayname.php | 4 +- settings/js/personal.js | 78 ++++++++++++++++------------- settings/templates/personal.php | 4 +- 3 files changed, 46 insertions(+), 40 deletions(-) diff --git a/settings/ajax/changedisplayname.php b/settings/ajax/changedisplayname.php index dff4d733cd..dea07aad14 100644 --- a/settings/ajax/changedisplayname.php +++ b/settings/ajax/changedisplayname.php @@ -4,6 +4,8 @@ OCP\JSON::callCheck(); OC_JSON::checkLoggedIn(); +$l=OC_L10N::get('core'); + $username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); $displayName = $_POST["displayName"]; @@ -26,7 +28,7 @@ if(is_null($userstatus)) { // Return Success story if( OC_User::setDisplayName( $username, $displayName )) { - OC_JSON::success(array("data" => array( "username" => $username, 'displayName' => $displayName ))); + OC_JSON::success(array("data" => array( "message" => $l->t('Your display name was changed'), "username" => $username, 'displayName' => $displayName ))); } else{ OC_JSON::error(array("data" => array( "message" => $l->t("Unable to change display name"), 'displayName' => OC_User::getDisplayName($username) ))); diff --git a/settings/js/personal.js b/settings/js/personal.js index 7c879bcafe..cdea7d75a9 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -20,16 +20,40 @@ function changeEmailAddress(){ }); } +/** + * Post the email address change to the server. + */ +function changeDisplayName(){ + if ($('#displayName').val() !== '' ) { + OC.msg.startSaving('#displaynameform .msg'); + // Serialize the data + var post = $( "#displaynameform" ).serialize(); + // Ajax foo + $.post( 'ajax/changedisplayname.php', post, function(data){ + if( data.status === "success" ){ + $('#oldDisplayName').text($('#displayName').val()); + // update displayName on the top right expand button + $('#expandDisplayName').text($('#displayName').val()); + } + else{ + $('#newdisplayname').val(data.data.displayName); + } + OC.msg.finishedSaving('#displaynameform .msg', data); + }); + return false; + } +} + $(document).ready(function(){ $("#passwordbutton").click( function(){ - if ($('#pass1').val() != '' && $('#pass2').val() != '') { + if ($('#pass1').val() !== '' && $('#pass2').val() !== '') { // Serialize the data var post = $( "#passwordform" ).serialize(); $('#passwordchanged').hide(); $('#passworderror').hide(); // Ajax foo $.post( 'ajax/changepassword.php', post, function(data){ - if( data.status == "success" ){ + if( data.status === "success" ){ $('#pass1').val(''); $('#pass2').val(''); $('#passwordchanged').show(); @@ -48,41 +72,23 @@ $(document).ready(function(){ }); - $("#displaynamebutton").click( function(){ - if ($('#displayName').val() != '' ) { - // Serialize the data - var post = $( "#displaynameform" ).serialize(); - $('#displaynamechanged').hide(); - $('#displaynemerror').hide(); - // Ajax foo - $.post( 'ajax/changedisplayname.php', post, function(data){ - if( data.status == "success" ){ - $('#displaynamechanged').show(); - $('#oldDisplayName').text($('#displayName').val()); - // update displayName on the top right expand button - $('#expandDisplayName').text($('#displayName').val()); - } - else{ - $('#newdisplayname').val(data.data.displayName) - $('#displaynameerror').html( data.data.message ); - $('#displaynameerror').show(); - } - }); - return false; - } else { - $('#displayName').val($('#oldDisplayName').val()); - $('#displaynamechanged').hide(); - $('#displaynameerror').show(); - return false; - } + $('#displayName').keyup(function(){ + if ($('#displayName').val() !== '' ){ + if(typeof timeout !== 'undefined'){ + clearTimeout(timeout); + } + timeout = setTimeout('changeDisplayName()',1000); + } + }); - }); $('#email').keyup(function(){ - if(typeof timeout !== 'undefined'){ - clearTimeout(timeout); + if ($('#email').val() !== '' ){ + if(typeof timeout !== 'undefined'){ + clearTimeout(timeout); + } + timeout = setTimeout('changeEmailAddress()',1000); } - timeout = setTimeout('changeEmailAddress()',1000); }); $("#languageinput").chosen(); @@ -92,7 +98,7 @@ $(document).ready(function(){ var post = $( "#languageinput" ).serialize(); // Ajax foo $.post( 'ajax/setlanguage.php', post, function(data){ - if( data.status == "success" ){ + if( data.status === "success" ){ location.reload(); } else{ @@ -113,12 +119,12 @@ OC.msg={ .show(); }, finishedSaving:function(selector, data){ - if( data.status == "success" ){ + if( data.status === "success" ){ $(selector).html( data.data.message ) .addClass('success') .stop(true, true) .delay(3000) - .fadeOut(600); + .fadeOut(900); }else{ $(selector).html( data.data.message ).addClass('error'); } diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 03073069ab..5ab111bd6d 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -54,11 +54,9 @@ if($_['displayNameChangeSupported']) {
t('Display Name');?> -
t('Your display name was changed'));?>
-
t('Unable to change your display name'));?>
+ -
Date: Tue, 23 Apr 2013 14:31:35 -0700 Subject: [PATCH 32/55] Fixed comment in personal.js. Changed message text in changedisplayname.php. --- settings/ajax/changedisplayname.php | 2 +- settings/js/personal.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/ajax/changedisplayname.php b/settings/ajax/changedisplayname.php index dea07aad14..faf962fbdd 100644 --- a/settings/ajax/changedisplayname.php +++ b/settings/ajax/changedisplayname.php @@ -28,7 +28,7 @@ if(is_null($userstatus)) { // Return Success story if( OC_User::setDisplayName( $username, $displayName )) { - OC_JSON::success(array("data" => array( "message" => $l->t('Your display name was changed'), "username" => $username, 'displayName' => $displayName ))); + OC_JSON::success(array("data" => array( "message" => $l->t('Your display name has been changed.'), "username" => $username, 'displayName' => $displayName ))); } else{ OC_JSON::error(array("data" => array( "message" => $l->t("Unable to change display name"), 'displayName' => OC_User::getDisplayName($username) ))); diff --git a/settings/js/personal.js b/settings/js/personal.js index cdea7d75a9..3ab811356c 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -21,7 +21,7 @@ function changeEmailAddress(){ } /** - * Post the email address change to the server. + * Post the display name change to the server. */ function changeDisplayName(){ if ($('#displayName').val() !== '' ) { From a7b4469b2e683a6c5ddeac83ff61c84ce3ffa941 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 24 Apr 2013 02:01:20 +0200 Subject: [PATCH 33/55] [tx-robot] updated from transifex --- apps/files/l10n/zh_CN.php | 1 + apps/files_external/l10n/bg_BG.php | 1 + apps/files_trashbin/l10n/bg_BG.php | 3 +- apps/files_versions/l10n/bg_BG.php | 2 + apps/user_ldap/l10n/tr.php | 11 +++++ apps/user_webdavauth/l10n/bg_BG.php | 5 +++ core/l10n/bg_BG.php | 3 ++ core/l10n/zh_CN.php | 3 ++ l10n/af_ZA/files_external.po | 15 +++++-- l10n/ar/files_external.po | 15 +++++-- l10n/be/files_external.po | 15 +++++-- l10n/bg_BG/core.po | 56 ++++++++++++------------- l10n/bg_BG/files_external.po | 19 ++++++--- l10n/bg_BG/files_trashbin.po | 12 +++--- l10n/bg_BG/files_versions.po | 12 +++--- l10n/bg_BG/settings.po | 32 +++++++------- l10n/bg_BG/user_webdavauth.po | 13 +++--- l10n/bn_BD/files_external.po | 15 +++++-- l10n/ca/files_external.po | 19 ++++++--- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files_external.po | 23 ++++++---- l10n/cy_GB/files_external.po | 15 +++++-- l10n/cy_GB/settings.po | 6 +-- l10n/da/files_external.po | 23 ++++++---- l10n/de/files_external.po | 27 +++++++----- l10n/de_DE/files_external.po | 27 +++++++----- l10n/el/files_external.po | 29 ++++++++----- l10n/eo/files_external.po | 17 +++++--- l10n/es/files_external.po | 25 +++++++---- l10n/es_AR/files_external.po | 21 ++++++---- l10n/et_EE/files_external.po | 19 ++++++--- l10n/eu/files_external.po | 19 ++++++--- l10n/fa/files_external.po | 17 +++++--- l10n/fi_FI/files_external.po | 21 ++++++---- l10n/fr/files_external.po | 21 ++++++---- l10n/gl/files_external.po | 21 ++++++---- l10n/he/files_external.po | 19 ++++++--- l10n/hi/files_external.po | 15 +++++-- l10n/hr/files_external.po | 15 +++++-- l10n/hu_HU/files_external.po | 17 +++++--- l10n/hy/files_external.po | 15 +++++-- l10n/ia/files_external.po | 15 +++++-- l10n/id/files_external.po | 21 ++++++---- l10n/is/files_external.po | 17 +++++--- l10n/it/files_external.po | 19 ++++++--- l10n/ja_JP/files_external.po | 21 ++++++---- l10n/ka/files_external.po | 15 +++++-- l10n/ka_GE/files_external.po | 17 +++++--- l10n/kn/files_external.po | 15 +++++-- l10n/ko/files_external.po | 23 ++++++---- l10n/ku_IQ/files_external.po | 15 +++++-- l10n/lb/files_external.po | 15 +++++-- l10n/lt_LT/files_external.po | 21 ++++++---- l10n/lv/files_external.po | 17 +++++--- l10n/mk/files_external.po | 17 +++++--- l10n/ms_MY/files_external.po | 15 +++++-- l10n/my_MM/files_external.po | 15 +++++-- l10n/nb_NO/files_external.po | 19 ++++++--- l10n/ne/files_external.po | 15 +++++-- l10n/nl/files_external.po | 19 ++++++--- l10n/nn_NO/files_external.po | 15 +++++-- l10n/oc/files_external.po | 15 +++++-- l10n/pl/files_external.po | 23 ++++++---- l10n/pl_PL/files_external.po | 15 +++++-- l10n/pt_BR/files_external.po | 21 ++++++---- l10n/pt_PT/files_external.po | 21 ++++++---- l10n/ro/files_external.po | 19 ++++++--- l10n/ru/files_external.po | 23 ++++++---- l10n/ru_RU/files_external.po | 17 +++++--- l10n/si_LK/files_external.po | 17 +++++--- l10n/sk/files_external.po | 15 +++++-- l10n/sk_SK/files_external.po | 21 ++++++---- l10n/sl/files_external.po | 21 ++++++---- l10n/sq/files_external.po | 15 +++++-- l10n/sr/files_external.po | 15 +++++-- l10n/sr@latin/files_external.po | 15 +++++-- l10n/sv/files_external.po | 19 ++++++--- l10n/sw_KE/files_external.po | 15 +++++-- l10n/ta_LK/files_external.po | 17 +++++--- l10n/te/files_external.po | 15 +++++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 13 ++++-- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files_external.po | 17 +++++--- l10n/tr/files_external.po | 17 +++++--- l10n/tr/user_ldap.po | 29 ++++++------- l10n/uk/files_external.po | 21 ++++++---- l10n/ur_PK/files_external.po | 15 +++++-- l10n/vi/files_external.po | 21 ++++++---- l10n/zh_CN.GB2312/files_external.po | 19 ++++++--- l10n/zh_CN/core.po | 65 +++++++++++++++-------------- l10n/zh_CN/files.po | 23 +++++----- l10n/zh_CN/files_external.po | 21 ++++++---- l10n/zh_HK/files_external.po | 15 +++++-- l10n/zh_TW/files_external.po | 19 ++++++--- settings/l10n/bg_BG.php | 6 +++ settings/l10n/cy_GB.php | 1 + 105 files changed, 1119 insertions(+), 556 deletions(-) create mode 100644 apps/user_webdavauth/l10n/bg_BG.php diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 8740298c62..9cd9eb893d 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -25,6 +25,7 @@ "undo" => "撤销", "perform delete operation" => "进行删除操作", "1 file uploading" => "1个文件上传中", +"files uploading" => "文件上传中", "'.' is an invalid file name." => "'.' 是一个无效的文件名。", "File name cannot be empty." => "文件名不能为空。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。", diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index 66ad4a879d..fcb01152bf 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -2,6 +2,7 @@ "Access granted" => "Достъпът е даден", "Grant access" => "Даване на достъп", "External Storage" => "Външно хранилище", +"Folder name" => "Име на папката", "Configuration" => "Конфигурация", "Options" => "Опции", "Applicable" => "Приложимо", diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 31c5dcb4ef..288518e1a4 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -13,5 +13,6 @@ "{count} files" => "{count} файла", "Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!", "Restore" => "Възтановяване", -"Delete" => "Изтриване" +"Delete" => "Изтриване", +"Deleted Files" => "Изтрити файлове" ); diff --git a/apps/files_versions/l10n/bg_BG.php b/apps/files_versions/l10n/bg_BG.php index 6a1882c2bf..a03d9adcf0 100644 --- a/apps/files_versions/l10n/bg_BG.php +++ b/apps/files_versions/l10n/bg_BG.php @@ -1,3 +1,5 @@ "успешно", +"File %s was reverted to version %s" => "Файлът %s бе върнат към версия %s", "Versions" => "Версии" ); diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index 7bcabb0448..3b013da17e 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -5,23 +5,34 @@ "Connection test failed" => "Bağlantı testi başarısız oldu", "Confirm Deletion" => "Silmeyi onayla", "Host" => "Sunucu", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokol atlamak edesin, sadece SSL istiyorsaniz. O zaman, idapsile baslamak. ", "Base DN" => "Ana DN", +"You can specify Base DN for users and groups in the Advanced tab" => "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. ", "User DN" => "Kullanıcı DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN musterinin, kimle baglamaya yapacagiz,meselâ uid=agent.dc mesela, dc=com Gecinme adisiz ici, DN ve Parola bos birakmak. ", "Password" => "Parola", "For anonymous access, leave DN and Password empty." => "Anonim erişim için DN ve Parola alanlarını boş bırakın.", "User Login Filter" => "Kullanıcı Oturum Filtresi", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Filter uyunlamak icin tayin ediyor, ne zaman girişmek isteminiz. % % uid adi kullanici girismeye karsi koymacak. ", "use %%uid placeholder, e.g. \"uid=%%uid\"" => "%%uid yer tutucusunu kullanın, örneğin \"uid=%%uid\"", "User List Filter" => "Kullanıcı Liste Filtresi", +"Defines the filter to apply, when retrieving users." => "Filter uyunmak icin tayin ediyor, ne zaman adi kullanici geri aliyor. ", "without any placeholder, e.g. \"objectClass=person\"." => "bir yer tutucusu olmadan, örneğin \"objectClass=person\"", "Group Filter" => "Grup Süzgeci", +"Defines the filter to apply, when retrieving groups." => "Filter uyunmak icin tayin ediyor, ne zaman grubalari tekrar aliyor. ", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "siz bir yer tutucu, mes. 'objectClass=posixGroup ('posixGrubu''. ", "Connection Settings" => "Bağlantı ayarları", "Port" => "Port", "Disable Main Server" => "Ana sunucuyu devredışı birak", "Use TLS" => "TLS kullan", "Turn off SSL certificate validation." => "SSL sertifika doğrulamasını kapat.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Bagladiginda, bunla secene sadece calisiyor, sunucu LDAP SSL sunucun ithal etemek, dneyme sizine sunucu ownClouden. ", "Not recommended, use for testing only." => "Önerilmez, sadece test için kullanın.", "in seconds. A change empties the cache." => "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir.", +"User Display Name Field" => "Ekran Adi Kullanici, (Alan Adi Kullanici Ekrane)", "Base User Tree" => "Temel Kullanıcı Ağacı", +"Group Display Name Field" => "Grub Ekrane Alani Adi", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP kullamayin grub adi ownCloud uremek icin. ", "Base Group Tree" => "Temel Grup Ağacı", "Group-Member association" => "Grup-Üye işbirliği", "in bytes" => "byte cinsinden", diff --git a/apps/user_webdavauth/l10n/bg_BG.php b/apps/user_webdavauth/l10n/bg_BG.php new file mode 100644 index 0000000000..a3bd703b25 --- /dev/null +++ b/apps/user_webdavauth/l10n/bg_BG.php @@ -0,0 +1,5 @@ + "WebDAV идентификация", +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud ще изпрати потребителските данни до този URL. " +); diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index dadb570d93..217f823168 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -11,7 +11,10 @@ "Cancel" => "Отказ", "Error" => "Грешка", "Share" => "Споделяне", +"Share with" => "Споделено с", "Password" => "Парола", +"create" => "създаване", +"Username" => "Потребител", "New password" => "Нова парола", "Personal" => "Лични", "Users" => "Потребители", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 926d4691ed..437a5f8c8f 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -107,6 +107,8 @@ "Edit categories" => "编辑分类", "Add" => "添加", "Security Warning" => "安全警告", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "你的PHP版本容易受到空字节攻击 (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "为保证安全使用 ownCloud 请更新您的PHP。", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "随机数生成器无效,请启用PHP的OpenSSL扩展", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全随机码生成器,攻击者可能会猜测密码重置信息从而窃取您的账户", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "您的数据目录和文件可能可以直接被互联网访问,因为 .htaccess 并未正常工作。", @@ -128,6 +130,7 @@ "If you did not change your password recently, your account may be compromised!" => "如果您没有最近修改您的密码,您的帐户可能会受到影响!", "Please change your password to secure your account again." => "请修改您的密码,以保护您的账户安全。", "Lost your password?" => "忘记密码?", +"remember" => "记住", "Log in" => "登录", "Alternative Logins" => "其他登录方式", "prev" => "上一页", diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index c832854e86..634f62d475 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 3a0cbd3949..20127d9c0a 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index 05c52d2475..3f9c858c25 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 73f65ac143..8de9ebda54 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. -# Jan-Christoph Borchardt , 2011. -# Stefan Ilivanov , 2011. -# Yasen Pramatarov , 2012. +# adin , 2011 +# Jan-Christoph Borchardt , 2011 +# Stefan Ilivanov , 2011 +# Yasen Pramatarov , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 01:58+0200\n" +"PO-Revision-Date: 2013-04-23 09:50+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -287,7 +287,7 @@ msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "" +msgstr "Споделено с" #: js/share.js:164 msgid "Share with link" @@ -297,7 +297,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Парола" @@ -347,7 +347,7 @@ msgstr "" #: js/share.js:325 msgid "create" -msgstr "" +msgstr "създаване" #: js/share.js:328 msgid "update" @@ -413,9 +413,9 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" -msgstr "" +msgstr "Потребител" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" @@ -523,37 +523,37 @@ msgstr "" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" @@ -565,33 +565,33 @@ msgstr "уеб услуги под Ваш контрол" msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 0e80e601f2..79af39ac84 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2013. +# Stefan Ilivanov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -38,26 +38,33 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Външно хранилище" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "Име на папката" #: templates/settings.php:10 msgid "External storage" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index cf61ec83ca..080dacc848 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kiril , 2013. -# Stefan Ilivanov , 2013. +# Kiril , 2013 +# Stefan Ilivanov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 09:02+0000\n" +"Last-Translator: Stefan Ilivanov \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,4 +83,4 @@ msgstr "Изтриване" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Изтрити файлове" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index b88246549b..a5a002b123 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2013. +# Stefan Ilivanov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 09:20+0000\n" +"Last-Translator: Stefan Ilivanov \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,12 +25,12 @@ msgstr "" #: history.php:40 msgid "success" -msgstr "" +msgstr "успешно" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Файлът %s бе върнат към версия %s" #: history.php:49 msgid "failure" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index c6d607a17e..1b93bc1763 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. -# Stefan Ilivanov , 2011,2013. -# Yasen Pramatarov , 2012. +# adin , 2011 +# Stefan Ilivanov , 2011,2013 +# Yasen Pramatarov , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 01:58+0200\n" +"PO-Revision-Date: 2013-04-23 09:20+0000\n" +"Last-Translator: Stefan Ilivanov \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,11 +47,11 @@ msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "Email адреса е записан" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "Невалиден Email адрес" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -89,7 +89,7 @@ msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "Обновяване до {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -150,7 +150,7 @@ msgstr "Изтриване" #: js/users.js:262 msgid "add group" -msgstr "" +msgstr "нова група" #: js/users.js:414 msgid "A valid username must be provided" @@ -234,7 +234,7 @@ msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "Крон" #: templates/admin.php:101 msgid "Execute one task with each page loaded" @@ -254,7 +254,7 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "Споделяне" #: templates/admin.php:134 msgid "Enable Share API" @@ -315,19 +315,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Още" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "По-малко" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "Версия" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 09:40+0000\n" +"Last-Translator: Stefan Ilivanov \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +20,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV идентификация" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloud ще изпрати потребителските данни до този URL. " diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index a277faf064..f243e865f5 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and msgid "Error configuring Google Drive storage" msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "বাহ্যিক সংরক্ষণাগার" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index bd05bbeecc..ec555961c5 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. +# rogerc , 2013 +# rogerc , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox" msgid "Error configuring Google Drive storage" msgstr "Error en configurar l'emmagatzemament Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Avís: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Emmagatzemament extern" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 0db794fe6c..dc2cfb7f39 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" -"PO-Revision-Date: 2013-04-22 11:21+0000\n" +"POT-Creation-Date: 2013-04-24 01:58+0200\n" +"PO-Revision-Date: 2013-04-23 11:53+0000\n" "Last-Translator: cernydav \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index fe3dea1568..09b4c042c2 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jan Krejci , 2012. -# Martin , 2012. -# Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012-2013. +# Jan Krejci , 2012 +# Martin , 2012 +# Michal Hrušecký , 2012 +# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,26 @@ msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbo msgid "Error configuring Google Drive storage" msgstr "Chyba při nastavení úložiště Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Varování: není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Externí úložiště" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 1b5cc6d424..b0a5c89c86 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" -"PO-Revision-Date: 2013-04-17 17:20+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 9612ffbaf6..27acbefd39 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" -"PO-Revision-Date: 2013-04-21 20:40+0000\n" +"POT-Creation-Date: 2013-04-24 01:58+0200\n" +"PO-Revision-Date: 2013-04-23 19:50+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -118,7 +118,7 @@ msgstr "" #: js/personal.js:109 msgid "Saving..." -msgstr "" +msgstr "Yn cadw..." #: js/users.js:43 msgid "deleted" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index e8c3c21931..7ae349229f 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bawl , 2013. -# , 2012. -# Morten Juhl-Johansen Zölde-Fejér , 2012. -# Ole Holm Frandsen , 2012. +# Bawl , 2013 +# cronner , 2012 +# Morten Juhl-Johansen Zölde-Fejér , 2012 +# Ole Holm Frandsen , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,26 @@ msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed" msgid "Error configuring Google Drive storage" msgstr "Fejl ved konfiguration af Google Drive plads" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Ekstern opbevaring" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 3bd88c78ec..d179bb9720 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# I Robot , 2012. -# I Robot , 2012. -# , 2013. -# , 2012. -# , 2012. +# Mirodin , 2012 +# I Robot , 2012 +# I Robot , 2012 +# stefanniedermann , 2013 +# I Robot , 2012 +# traductor , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -43,19 +43,26 @@ msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Externer Speicher" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 3b72b5747d..85d87af76e 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# I Robot , 2012. -# , 2013. -# , 2012. -# , 2012. +# Mirodin , 2012 +# deh3nne , 2012 +# I Robot , 2012 +# stefanniedermann , 2013 +# I Robot , 2012 +# traductor , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -43,19 +43,26 @@ msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Externer Speicher" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index ee87024042..0bfbe19df7 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Efstathios Iosifidis , 2012. -# Efstathios Iosifidis , 2012. -# Nisok Kosin , 2012. -# Petros Kyladitis , 2012. -# Wasilis Mandratzis , 2013. -# Γιάννης , 2012. -# Γιάννης Ανθυμίδης , 2012. +# Efstathios Iosifidis , 2012 +# Efstathios Iosifidis , 2012 +# Nisok Kosin , 2012 +# Petros Kyladitis , 2012 +# Wasilis , 2013 +# Γιάννης Ανθυμίδης , 2012 +# Γιάννης Ανθυμίδης , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -44,19 +44,26 @@ msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox κα msgid "Error configuring Google Drive storage" msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Εξωτερικό Αποθηκευτικό Μέσο" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 97fd9187fc..ab62bab36e 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2012. +# Mariano , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan." msgid "Error configuring Google Drive storage" msgstr "Eraro dum agordado de la memorservo Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Malena memorilo" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 57448b496c..eca7508d47 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012. -# Javier Llorente , 2012. -# Marcos , 2013. -# , 2012. -# Raul Fernandez Garcia , 2012. +# Agustin Ferrario , 2012 +# Javier Llorente , 2012 +# Marcos , 2013 +# pedro.navia , 2012 +# Raul Fernandez Garcia , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -42,19 +42,26 @@ msgstr "Por favor , proporcione un secreto y una contraseña válida de la app D msgid "Error configuring Google Drive storage" msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Almacenamiento externo" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index a5b2316b32..c0c3d7522e 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012. -# , 2012. -# Julia , 2013. +# Agustin Ferrario , 2012 +# cjtess , 2012 +# juliabis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Por favor, proporcioná un secreto y una contraseña válida para la apl msgid "Error configuring Google Drive storage" msgstr "Error al configurar el almacenamiento de Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Almacenamiento externo" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 23cd4c8a18..9c5eea8899 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pisike Sipelgas , 2013. -# Rivo Zängov , 2012. +# pisike.sipelgas , 2013 +# Rivo Zängov , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna." msgid "Error configuring Google Drive storage" msgstr "Viga Google Drive'i salvestusruumi seadistamisel" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Hoiatus: \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Hoiatus: FTP tugi puudub PHP paigalduses. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Väline salvestuskoht" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 4cb0843ae5..95185aed55 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. +# asieriko , 2013 +# asieriko , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua" msgid "Error configuring Google Drive storage" msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Kanpoko Biltegiratzea" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index b881ebe558..7940fbf20a 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mahdi Kereshteh , 2013. +# miki_mika1362 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "حافظه خارجی" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 87b5f4c115..21ef4e3d13 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Jiri Grönroos , 2012-2013. -# , 2012. +# variaatiox , 2012 +# Jiri Grönroos , 2012-2013 +# teho , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus." msgid "Error configuring Google Drive storage" msgstr "Virhe Google Drive levyn asetuksia tehtäessä" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Varoitus: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Erillinen tallennusväline" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index ed1652d85a..5f91f1ca56 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romain DEP. , 2012. -# , 2013. +# ouafnico , 2012 +# Romain DEP. , 2012 +# Zertrin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de pas msgid "Error configuring Google Drive storage" msgstr "Erreur lors de la configuration du support de stockage Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Stockage externe" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index f000f90728..e8752349ec 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Xosé M. Lamas , 2012. +# mbouzada , 2013 +# mbouzada , 2012 +# Xosé M. Lamas , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Forneza unha chave correcta e segreda do Dropbox." msgid "Error configuring Google Drive storage" msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Almacenamento externo" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index b8639454e1..7d4d083fe0 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Tomer Cohen , 2012. -# Yaron Shahrabani , 2012. +# Tomer Cohen , 2012 +# Yaron Shahrabani , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "נא לספק קוד יישום וסוד תקניים של Dropbox." msgid "Error configuring Google Drive storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "אחסון חיצוני" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index 0bae5719b4..1dcca569c5 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index af0395bead..6cd18b32ca 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 0f4348a55c..6b80302758 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Laszlo Tornoci , 2013. +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!" msgid "Error configuring Google Drive storage" msgstr "A Google Drive tárolót nem sikerült beállítani" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Figyelem: a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Külső tárolási szolgáltatások becsatolása" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 2b6464945d..798696135e 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 51c38dce12..bd5a62c049 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 64d7c1ec65..43f41067af 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2013. -# Widya Walesa , 2013. +# elmakong , 2012 +# rodin , 2013 +# w41l , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Masukkan kunci dan sandi aplikasi Dropbox yang benar." msgid "Error configuring Google Drive storage" msgstr "Kesalahan dalam mengkonfigurasi penyimpanan Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Peringatan: \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Peringatan: Dukungan FTP di PHP tidak aktif atau tidak terpasang. Mount direktori FTP tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Penyimpanan Eksternal" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index f4a26d339d..72593348fe 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# sveinn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "Gefðu upp virkan Dropbox lykil og leynikóða" msgid "Error configuring Google Drive storage" msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aðvörun: FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Ytri gagnageymsla" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index fb50f4d4d8..54bc3a2073 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Innocenzo Ventre , 2012. -# Vincenzo Reale , 2012-2013. +# Innocenzo Ventre , 2012 +# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "Fornisci chiave di applicazione e segreto di Dropbox validi." msgid "Error configuring Google Drive storage" msgstr "Errore durante la configurazione dell'archivio Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Archiviazione esterna" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index ad9c4adb74..0ac65fbf27 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012. -# YANO Tetsu , 2013. +# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2012 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "有効なDropboxアプリのキーとパスワードを入力して下 msgid "Error configuring Google Drive storage" msgstr "Googleドライブストレージの設定エラー" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告: \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "警告: PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "外部ストレージ" diff --git a/l10n/ka/files_external.po b/l10n/ka/files_external.po index 1d2bb5cb2b..105b3833e5 100644 --- a/l10n/ka/files_external.po +++ b/l10n/ka/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 29e278e6e5..0fdec97c27 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "გთხოვთ მიუთითოთ Dropbox აპლიკა msgid "Error configuring Google Drive storage" msgstr "შეცდომა Google Drive საცავის კონფიგურირების დროს" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "ექსტერნალ საცავი" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index ed14ed557d..6012a6d392 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index b2dbdea9bd..c8d11aa32e 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# 남자사람 , 2012. -# Park Shinjo , 2013. -# Shinjo Park , 2012. +# aoiob4305 , 2013 +# 남자사람 , 2012 +# Park Shinjo , 2013 +# Shinjo Park , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,26 @@ msgstr "올바른 Dropbox 앱 키와 암호를 입력하십시오." msgid "Error configuring Google Drive storage" msgstr "Google 드라이브 저장소 설정 오류" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "외부 저장소" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 0ebebe4074..82b7d02e7a 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index e0bf824f95..2cd6658024 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index de18742d78..912e05548d 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dr. ROX , 2012. -# Mindaugas , 2013. +# andrejuseu , 2012 +# Dr. ROX , 2012 +# Min2liz , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\"." msgid "Error configuring Google Drive storage" msgstr "Klaida nustatinėjant Google Drive talpyklą" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Įspėjimas: FTP palaikymas PHP sistemoje nėra įjungtas arba nėra įdiegtas. FTP dalinimosi įjungimas nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas FTP palaikymas. " +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Išorinės saugyklos" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 0c6f652630..0155aee427 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013. +# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "Lūdzu, norādiet derīgu Dropbox lietotnes atslēgu un noslēpumu." msgid "Error configuring Google Drive storage" msgstr "Kļūda, konfigurējot Google Drive krātuvi" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Brīdinājums: nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Brīdinājums: uz PHP nav aktivēts vai instalēts FTP atbalsts. Nevar montēt FTP koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Ārējā krātuve" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index fe3c349323..4b902d2cca 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. +# Georgi Stanojevski , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "Ве молам доставите валиден Dropbox клуч и т msgid "Error configuring Google Drive storage" msgstr "Грешка при конфигурација на Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Надворешно складиште" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 8ecc367a1e..c9f937e2ac 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 3eb55f030a..8fa33bf789 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 24d044818d..f0410099e0 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2013. +# anjar , 2012 +# troll , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Ekstern lagring" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index bacdd21335..8563ff898e 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index f1fefe88e1..8497881e28 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012-2013. -# Richard Bos , 2012. +# André Koot , 2012-2013 +# Richard Bos , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "Geef een geldige Dropbox key en secret." msgid "Error configuring Google Drive storage" msgstr "Fout tijdens het configureren van Google Drive opslag" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Waarschuwing: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van FTP shares is niet mogelijk. Vraag uw beheerder FTP ondersteuning te installeren." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Externe opslag" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 88b567ae90..bba5e236c2 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index ea558c0a4f..ca73b15b03 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 7b747f0ed5..10d50d5332 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012. -# Maciej Tarmas , 2013. -# Marcin Małecki , 2012. +# Cyryl Sochacki , 2012 +# Cyryl Sochacki , 2012 +# Maciej Tarmas , 2013 +# Marcin Małecki , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,26 @@ msgstr "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny." msgid "Error configuring Google Drive storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Ostrzeżenie: Wsparcie dla FTP w PHP nie jest zainstalowane lub włączone. Skontaktuj sie z administratorem w celu zainstalowania lub włączenia go." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Zewnętrzna zasoby dyskowe" diff --git a/l10n/pl_PL/files_external.po b/l10n/pl_PL/files_external.po index 63786d6b42..aec6c07a33 100644 --- a/l10n/pl_PL/files_external.po +++ b/l10n/pl_PL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 9b0ff93c3c..146f81b59f 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Rodrigo Tavares , 2013. +# dudanogueira , 2013 +# sedir , 2012 +# Rodrigo Tavares , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Por favor forneça um app key e secret válido do Dropbox" msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar armazenamento do Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aviso: O suporte para FTP do PHP não está ativado ou instalado. Impossível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Armazenamento Externo" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 583bb3bfaf..7faa302134 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Duarte Velez Grilo , 2012. -# Helder Meneses , 2013. +# Mouxy , 2012 +# Duarte Velez Grilo , 2012 +# Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas." msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar o armazenamento do Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Aviso: O suporte FTP no PHP não está activate ou instalado. Não é possível montar as partilhas FTP. Peça ao seu administrador para instalar." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Armazenamento Externo" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 104dee1532..352b71c0b7 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dumitru Ursu <>, 2013. -# , 2012. +# Dimon Pockemon <>, 2013 +# g.ciprian , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "Prezintă te rog o cheie de Dropbox validă și parola" msgid "Error configuring Google Drive storage" msgstr "Eroare la configurarea mediului de stocare Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Atenție: suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Stocare externă" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 5054c5c61d..c066f57cdf 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012. -# , 2012. -# , 2012. -# Дмитрий , 2013. +# Denis , 2012 +# sam002 , 2012 +# skoptev , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,26 @@ msgstr "Пожалуйста, предоставьте действующий к msgid "Error configuring Google Drive storage" msgstr "Ошибка при настройке хранилища Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Внешний носитель" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index 43604ee016..1410e66849 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# AnnaSch , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "Пожалуйста представьте допустимый клю msgid "Error configuring Google Drive storage" msgstr "Ошибка настройки хранилища Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Предупреждение: \"smbclient\" не установлен. Подключение общих папок CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Предупреждение: Поддержка FTP в PHP не включена или не установлена. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить ее." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Внешние системы хранения данных" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 13c3bd6a62..09a9eee168 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. +# Anushke Guneratne , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "කරුණාකර වලංගු Dropbox යෙදුම් යත msgid "Error configuring Google Drive storage" msgstr "Google Drive ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "භාහිර ගබඩාව" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index f99201a558..1b1accf306 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 3603bda557..5bbf018c25 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Marián Hvolka , 2013. -# , 2012. +# intense , 2012 +# mhh , 2013 +# martinb , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Zadajte platný kľúč aplikácie a heslo Dropbox" msgid "Error configuring Google Drive storage" msgstr "Chyba pri konfigurácii úložiska Google drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Upozornenie: Podpora FTP v PHP nie je povolená alebo nainštalovaná. Nie je možné pripojenie oddielov FTP. Požiadajte administrátora systému, nech ho nainštaluje." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Externé úložisko" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index d7930595bc..0d3f615d44 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Matej Urbančič <>, 2013. -# Peter Peroša , 2012. +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Vpisati je treba veljaven ključ programa in kodo za Dropbox" msgid "Error configuring Google Drive storage" msgstr "Napaka nastavljanja shrambe Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ni mogoče." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Zunanja podatkovna shramba" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index bb92141f3e..432e33124c 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 476522e9fb..5a02fc725f 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index fbfb36951c..5a21c306fe 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index e58feaa6ce..193cc6f265 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André , 2013. -# Magnus Höglund , 2012. +# Lokal_Profil , 2013 +# Magnus Höglund , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "Ange en giltig Dropbox nyckel och hemlighet." msgid "Error configuring Google Drive storage" msgstr "Fel vid konfigurering av Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Varning: Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Extern lagring" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index f61afed330..1105720759 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 678e681c2d..993268f450 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "தயவுசெய்து ஒரு செல்லுபடிய msgid "Error configuring Google Drive storage" msgstr "Google இயக்க சேமிப்பகத்தை தகமைப்பதில் வழு" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "வெளி சேமிப்பு" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 0ad4883fc5..9315027cc5 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 35b43eb24d..706fa39233 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 89a7db1607..52d4e76525 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 474450fd7d..8e1be37d0d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 55b915b8c1..e9cd516f46 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting " "of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 6da4a5a9c1..fbf9dc8457 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 6f7cd8036e..ff9afc80f2 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 40c2e572fb..79299d9323 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index cf80a35b29..9adf4adbcf 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 1b32c3ac1b..c3cdbf5544 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index bdb389c0b3..2536bd0661 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 98ae8159bd..9bdcf398ab 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 8ad035271a..97804e79f6 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013. +# AriesAnywhere Anywhere , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -38,19 +38,26 @@ msgstr "กรุณากรอกรหัส app key ของ Dropbox แล msgid "Error configuring Google Drive storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าการจัดเก็บข้อมูลในพื้นที่ของ Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "คำเตือน: \"smbclient\" ยังไม่ได้ถูกติดตั้ง. การชี้ CIFS/SMB เพื่อแชร์ข้อมูลไม่สามารถกระทำได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "คำเตือน: การสนับสนุนการใช้งาน FTP ในภาษา PHP ยังไม่ได้ถูกเปิดใช้งานหรือถูกติดตั้ง. การชี้ FTP เพื่อแชร์ข้อมูลไม่สามารถดำเนินการได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "พื้นทีจัดเก็บข้อมูลจากภายนอก" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index a52ac427e9..131b082711 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" -"PO-Revision-Date: 2013-04-22 15:10+0000\n" -"Last-Translator: KAT.RAT12 \n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,26 @@ msgstr "Lütfen Dropbox app key ve secret temin ediniz" msgid "Error configuring Google Drive storage" msgstr "Google Drive depo yapılandırma hatası" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, " -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Harici Depolama" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index fa5df1f463..f87c51711e 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -5,13 +5,14 @@ # Translators: # Necdet Yücel , 2012 # atakan96 , 2013 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" -"PO-Revision-Date: 2013-04-22 07:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 18:20+0000\n" +"Last-Translator: KAT.RAT12 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -99,7 +100,7 @@ msgstr "Sunucu" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Protokol atlamak edesin, sadece SSL istiyorsaniz. O zaman, idapsile baslamak. " #: templates/settings.php:39 msgid "Base DN" @@ -111,7 +112,7 @@ msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. " #: templates/settings.php:43 msgid "User DN" @@ -122,7 +123,7 @@ msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "DN musterinin, kimle baglamaya yapacagiz,meselâ uid=agent.dc mesela, dc=com Gecinme adisiz ici, DN ve Parola bos birakmak. " #: templates/settings.php:46 msgid "Password" @@ -141,7 +142,7 @@ msgstr "Kullanıcı Oturum Filtresi" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Filter uyunlamak icin tayin ediyor, ne zaman girişmek isteminiz. % % uid adi kullanici girismeye karsi koymacak. " #: templates/settings.php:54 #, php-format @@ -154,7 +155,7 @@ msgstr "Kullanıcı Liste Filtresi" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Filter uyunmak icin tayin ediyor, ne zaman adi kullanici geri aliyor. " #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." @@ -166,11 +167,11 @@ msgstr "Grup Süzgeci" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Filter uyunmak icin tayin ediyor, ne zaman grubalari tekrar aliyor. " #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "siz bir yer tutucu, mes. 'objectClass=posixGroup ('posixGrubu''. " #: templates/settings.php:68 msgid "Connection Settings" @@ -230,7 +231,7 @@ msgstr "SSL sertifika doğrulamasını kapat." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Bagladiginda, bunla secene sadece calisiyor, sunucu LDAP SSL sunucun ithal etemek, dneyme sizine sunucu ownClouden. " #: templates/settings.php:77 msgid "Not recommended, use for testing only." @@ -250,7 +251,7 @@ msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "" +msgstr "Ekran Adi Kullanici, (Alan Adi Kullanici Ekrane)" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." @@ -274,11 +275,11 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "" +msgstr "Grub Ekrane Alani Adi" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "LDAP kullamayin grub adi ownCloud uremek icin. " #: templates/settings.php:86 msgid "Base Group Tree" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 9247439d55..2be7b986f9 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# пан Володимир , 2013. +# skoptev , 2012 +# VicDeo , 2012 +# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Будь ласка, надайте дійсний ключ та пар msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Зовнішні сховища" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index f6e9d577bd..691d297995 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 1d8f070f12..3ad70cf8a4 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# sao sang , 2013. -# Sơn Nguyễn , 2012. +# mattheu_9x , 2012 +# saosangm , 2013 +# Sơn Nguyễn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "Xin vui lòng cung cấp một ứng dụng Dropbox hợp lệ và mã b msgid "Error configuring Google Drive storage" msgstr "Lỗi cấu hình lưu trữ Google Drive" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Cảnh báo: \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó." -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "Cảnh báo: FTP trong PHP chưa được cài đặt hoặc chưa được mở. Mount FTP shares là không thể. Xin hãy yêu cầu quản trị hệ thống của bạn cài đặt nó." +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "Lưu trữ ngoài" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index d3602f8d94..b0d5fc841d 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# HO Gin Wang , 2013. -# marguerite su , 2012. +# kopisee , 2013 +# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "请提供一个有效的 Dropbox app key 和 secret。" msgid "Error configuring Google Drive storage" msgstr "配置 Google Drive 存储失败" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "注意:“SMB客户端”未安装。CIFS/SMB分享不可用。请向您的系统管理员请求安装该客户端。" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "注意:PHP的FTP支持尚未启用或未安装。FTP分享不可用。请向您的系统管理员请求安装。" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "外部存储" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 8b0bba0a79..de6872551d 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dianjin Wang <1132321739qq@gmail.com>, 2012. -# Phoenix Nemo <>, 2012. -# , 2013. -# , 2012. -# , 2013. -# , 2011, 2012. +# hanfeng , 2012 +# Dianjin Wang <1132321739qq@gmail.com>, 2012 +# Phoenix Nemo <>, 2012 +# leonfeng , 2013 +# waterone , 2012 +# Xuetian Weng , 2013 +# Xuetian Weng , 2011, 2012 +# zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 01:58+0200\n" +"PO-Revision-Date: 2013-04-23 15:00+0000\n" +"Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -300,7 +301,7 @@ msgstr "共享链接" msgid "Password protect" msgstr "密码保护" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "密码" @@ -416,7 +417,7 @@ msgid "Request failed!" msgstr "请求失败!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "用户名" @@ -483,11 +484,11 @@ msgstr "安全警告" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "你的PHP版本容易受到空字节攻击 (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "为保证安全使用 ownCloud 请更新您的PHP。" #: templates/installation.php:32 msgid "" @@ -526,37 +527,37 @@ msgstr "高级" msgid "Data folder" msgstr "数据目录" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "安装完成" @@ -568,33 +569,33 @@ msgstr "由您掌控的网络服务" msgid "Log out" msgstr "注销" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自动登录被拒绝!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "如果您没有最近修改您的密码,您的帐户可能会受到影响!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "请修改您的密码,以保护您的账户安全。" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" -msgstr "" +msgstr "记住" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "登录" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "其他登录方式" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index f16dc8ac1a..60bf28f2cd 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dianjin Wang <1132321739qq@gmail.com>, 2012. -# marguerite su , 2013. -# , 2012. -# , 2012. -# , 2013. -# , 2011, 2012. +# hanfeng , 2012 +# Dianjin Wang <1132321739qq@gmail.com>, 2012 +# marguerite su , 2013 +# leonfeng , 2012 +# waterone , 2012 +# Xuetian Weng , 2013 +# Xuetian Weng , 2011, 2012 +# zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 14:40+0000\n" +"Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,7 +136,7 @@ msgstr "1个文件上传中" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "文件上传中" #: js/files.js:52 msgid "'.' is an invalid file name." diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 71015f5413..dc837d80a4 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dianjin Wang <1132321739qq@gmail.com>, 2012. -# marguerite su , 2013. +# hanfeng , 2012 +# Dianjin Wang <1132321739qq@gmail.com>, 2012 +# marguerite su , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -40,19 +40,26 @@ msgstr "请提供有效的Dropbox应用key和secret" msgid "Error configuring Google Drive storage" msgstr "配置Google Drive存储时出错" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "外部存储" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index c58c75be33..e59fea5516 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -37,19 +37,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 2381134dcb..2b73060b12 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. +# Hydriz , 2013 +# dw4dev , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"PO-Revision-Date: 2013-04-23 23:58+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -39,19 +39,26 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:424 +#: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:427 +#: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "外部儲存裝置" diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index b096fb902f..da2be46129 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -2,10 +2,13 @@ "Authentication error" => "Възникна проблем с идентификацията", "Group already exists" => "Групата вече съществува", "Unable to add group" => "Невъзможно добавяне на група", +"Email saved" => "Email адреса е записан", +"Invalid email" => "Невалиден Email адрес", "Unable to delete group" => "Невъзможно изтриване на група", "Unable to delete user" => "Невъзможно изтриване на потребител", "Language changed" => "Езикът е променен", "Invalid request" => "Невалидна заявка", +"Update to {appversion}" => "Обновяване до {appversion}", "Disable" => "Изключено", "Enable" => "Включено", "Please wait...." => "Моля почакайте....", @@ -17,8 +20,11 @@ "undo" => "възтановяване", "Groups" => "Групи", "Delete" => "Изтриване", +"add group" => "нова група", "__language_name__" => "__language_name__", "Please double check the installation guides." => "Моля направете повторна справка с ръководството за инсталиране.", +"Cron" => "Крон", +"Sharing" => "Споделяне", "More" => "Още", "Less" => "По-малко", "Version" => "Версия", diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php index eea702bde9..09b5de4e66 100644 --- a/settings/l10n/cy_GB.php +++ b/settings/l10n/cy_GB.php @@ -2,6 +2,7 @@ "Authentication error" => "Gwall dilysu", "Invalid request" => "Cais annilys", "Error" => "Gwall", +"Saving..." => "Yn cadw...", "undo" => "dadwneud", "Delete" => "Dileu", "Security Warning" => "Rhybudd Diogelwch", From e8bb998ecc00226a299d4e617967b94323ffaa84 Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 23 Apr 2013 15:34:16 +0200 Subject: [PATCH 34/55] Fix #3095. --- core/css/multiselect.css | 6 +++++- core/js/multiselect.js | 2 +- settings/templates/users.php | 12 +++--------- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/core/css/multiselect.css b/core/css/multiselect.css index 31c8ef88eb..a6b7204871 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -29,6 +29,10 @@ white-space:nowrap; } + ul.multiselectoptions>li>label { + margin-left: 5px; + } + div.multiselect { display:inline-block; max-width:400px; @@ -75,4 +79,4 @@ padding-bottom:.2em; padding-top:.2em; margin:0; - } \ No newline at end of file + } diff --git a/core/js/multiselect.js b/core/js/multiselect.js index bc4223feb6..463c397d8c 100644 --- a/core/js/multiselect.js +++ b/core/js/multiselect.js @@ -316,4 +316,4 @@ return span; }; -})( jQuery ); \ No newline at end of file +})( jQuery ); diff --git a/settings/templates/users.php b/settings/templates/users.php index 6113337f4e..e86dd46efb 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -25,9 +25,7 @@ $_['subadmingroups'] = array_flip($items); id="newusergroups" data-placeholder="groups" title="t('Groups'))?>" multiple="multiple"> - + @@ -105,9 +103,7 @@ $_['subadmingroups'] = array_flip($items); data-placeholder="groups" title="t('Groups'))?>" multiple="multiple"> - + @@ -119,9 +115,7 @@ $_['subadmingroups'] = array_flip($items); data-placeholder="subadmins" title="t('Group Admin'))?>" multiple="multiple"> - + From e15afcb011e6f25483df691b385f0d360d6736a6 Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 24 Apr 2013 11:48:20 +0200 Subject: [PATCH 35/55] Add space around checkboxes. --- core/css/multiselect.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/css/multiselect.css b/core/css/multiselect.css index a6b7204871..def4e60d74 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -29,8 +29,10 @@ white-space:nowrap; } - ul.multiselectoptions>li>label { - margin-left: 5px; + ul.multiselectoptions>li>input[type="checkbox"] { + margin-top: 3px; + margin-right: 5px; + margin-left: 3px; } div.multiselect { From b98b56e4a8c92d56969806f62390d57d5986855a Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 24 Apr 2013 13:45:40 +0200 Subject: [PATCH 36/55] check if there is a default/ folder in the theme directory if no theme exists --- lib/helper.php | 2 +- lib/template.php | 2 +- lib/templatelayout.php | 4 ++-- lib/util.php | 21 +++++++++++++++++++++ 4 files changed, 25 insertions(+), 4 deletions(-) diff --git a/lib/helper.php b/lib/helper.php index 73484ad913..2ba70294f4 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -159,7 +159,7 @@ class OC_Helper { */ public static function imagePath( $app, $image ) { // Read the selected theme from the config file - $theme=OC_Config::getValue( "theme" ); + $theme = OC_Util::getTheme(); // Check if the app is in the app folder if( file_exists( OC::$SERVERROOT."/themes/$theme/apps/$app/img/$image" )) { diff --git a/lib/template.php b/lib/template.php index 434c1e9e99..f007618ff1 100644 --- a/lib/template.php +++ b/lib/template.php @@ -272,7 +272,7 @@ class OC_Template{ protected function findTemplate($name) { // Read the selected theme from the config file - $theme=OC_Config::getValue( "theme" ); + $theme = OC_Util::getTheme(); // Read the detected formfactor and use the right file name. $fext = self::getFormFactorExtension(); diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 69bebac050..3c496f56e4 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -103,7 +103,7 @@ class OC_TemplateLayout extends OC_Template { static public function findStylesheetFiles($styles) { // Read the selected theme from the config file - $theme=OC_Config::getValue( 'theme' ); + $theme = OC_Util::getTheme(); // Read the detected formfactor and use the right file name. $fext = self::getFormFactorExtension(); @@ -162,7 +162,7 @@ class OC_TemplateLayout extends OC_Template { static public function findJavascriptFiles($scripts) { // Read the selected theme from the config file - $theme=OC_Config::getValue( 'theme' ); + $theme = OC_Util::getTheme(); // Read the detected formfactor and use the right file name. $fext = self::getFormFactorExtension(); diff --git a/lib/util.php b/lib/util.php index 38453c1ce9..987a578277 100755 --- a/lib/util.php +++ b/lib/util.php @@ -795,4 +795,25 @@ class OC_Util { return (substr(PHP_OS, 0, 3) === "WIN"); } + + /** + * Handles the case that there may not be a theme, then check if a "default" + * theme exists and take that one + * @return string the theme + */ + public static function getTheme() { + $theme = OC_Config::getValue("theme"); + + if(is_null($theme)) { + + if(is_dir(__DIR__ . '/../themes/default')) { + $theme = 'default'; + } + + } + + return $theme; + } + + } From a8075943c3f425f3871faca9953bed3503573ef5 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 24 Apr 2013 14:17:52 +0200 Subject: [PATCH 37/55] use variable instead of relative path to file --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 987a578277..810593358a 100755 --- a/lib/util.php +++ b/lib/util.php @@ -806,7 +806,7 @@ class OC_Util { if(is_null($theme)) { - if(is_dir(__DIR__ . '/../themes/default')) { + if(is_dir(OC::$SERVERROOT . '/themes/default')) { $theme = 'default'; } From 03aa86d8a6e6631547b72f0f01a2394784900db2 Mon Sep 17 00:00:00 2001 From: Florian Scholz Date: Wed, 24 Apr 2013 14:45:40 +0200 Subject: [PATCH 38/55] - xframe restriction configurable now --- config/config.sample.php | 4 ++++ lib/template.php | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index b70b3cf533..a3b7cbaca4 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -148,6 +148,10 @@ $CONFIG = array( /* Custom CSP policy, changing this will overwrite the standard policy */ "custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:", +/* Enable/disable X-Frame-Restriction */ +/* HIGH SECURITY RISK IF DISABLED*/ +"xframe_restriction" => true, + /* The directory where the user data is stored, default to data in the owncloud * directory. The sqlite database is also stored here, when sqlite is used. */ diff --git a/lib/template.php b/lib/template.php index 434c1e9e99..dd5542e099 100644 --- a/lib/template.php +++ b/lib/template.php @@ -186,10 +186,15 @@ class OC_Template{ $this->l10n = OC_L10N::get($parts[0]); // Some headers to enhance security - header('X-Frame-Options: Sameorigin'); // Disallow iFraming from other domains header('X-XSS-Protection: 1; mode=block'); // Enforce browser based XSS filters header('X-Content-Type-Options: nosniff'); // Disable sniffing the content type for IE + // iFrame Restriction Policy + $xFramePolicy = OC_Config::getValue('xframe_restriction', true); + if($xFramePolicy) { + header('X-Frame-Options: Sameorigin'); // Disallow iFraming from other domains + } + // Content Security Policy // If you change the standard policy, please also change it in config.sample.php $policy = OC_Config::getValue('custom_csp_policy', From a86fe7920bd4b49f56fe4448a047e07c0356b43b Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Wed, 24 Apr 2013 15:11:53 +0200 Subject: [PATCH 39/55] Try to prefer index.php over index.html in the same directory Add JS redirect if that fails (HTTP-based redirects are disabled by default in more recent Firefox versions). --- .htaccess | 3 +++ index.html | 1 + 2 files changed, 4 insertions(+) diff --git a/.htaccess b/.htaccess index 463b49993e..201e0d605b 100755 --- a/.htaccess +++ b/.htaccess @@ -32,5 +32,8 @@ RewriteRule ^remote/(.*) remote.php [QSA,L] AddType image/svg+xml svg svgz AddEncoding gzip svgz + +DirectoryIndex index.php index.html + AddDefaultCharset utf-8 Options -Indexes diff --git a/index.html b/index.html index 69d42e3a0b..f160f46b6f 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,7 @@ + From 6ac2fdf44b636243630febd676090e4f6d138d69 Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Wed, 24 Apr 2013 15:11:58 +0200 Subject: [PATCH 40/55] sync parameters in setup.php with the ones in the actual .htaccess --- lib/setup.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/setup.php b/lib/setup.php index c330729298..d1197b3ebf 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -828,6 +828,10 @@ class OC_Setup { $content.= "AddType image/svg+xml svg svgz\n"; $content.= "AddEncoding gzip svgz\n"; $content.= "\n"; + $content.= "\n"; + $content.= "DirectoryIndex index.php index.html\n"; + $content.= "\n"; + $content.= "AddDefaultCharset utf-8\n"; $content.= "Options -Indexes\n"; @file_put_contents(OC::$SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it From ab7fcebeb38f6515ae584fc110cbfd8306ead5e3 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 24 Apr 2013 15:26:36 +0200 Subject: [PATCH 41/55] Files: fix the order fileactions are computed for a file --- apps/files/js/fileactions.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index f3264da5a1..a77add141a 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -22,18 +22,18 @@ var FileActions = { if (FileActions.actions.all) { actions = $.extend(actions, FileActions.actions.all); } - if (mime) { - if (FileActions.actions[mime]) { - actions = $.extend(actions, FileActions.actions[mime]); + if (type) {//type is 'dir' or 'file' + if (FileActions.actions[type]) { + actions = $.extend(actions, FileActions.actions[type]); } + } + if (mime) { var mimePart = mime.substr(0, mime.indexOf('/')); if (FileActions.actions[mimePart]) { actions = $.extend(actions, FileActions.actions[mimePart]); } - } - if (type) {//type is 'dir' or 'file' - if (FileActions.actions[type]) { - actions = $.extend(actions, FileActions.actions[type]); + if (FileActions.actions[mime]) { + actions = $.extend(actions, FileActions.actions[mime]); } } var filteredActions = {}; From 637dd685dba5d701b92851a60eae2a25b73bd46f Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 24 Apr 2013 16:13:17 +0200 Subject: [PATCH 42/55] fix wrong shared icon description fix #2928 translation of string "Shared" has to be marked as located in "files" for the translation extractor --- apps/files/js/fileactions.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index f3264da5a1..264a86adb7 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -113,6 +113,7 @@ var FileActions = { } }); if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){ + // t('files', 'Share') addAction('Share', actions.Share); } From 4f96d7fb85fcde44bed5317c7cf42843d8085534 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 24 Apr 2013 16:45:51 +0200 Subject: [PATCH 43/55] Allow loading of external media ressources --- config/config.sample.php | 2 +- lib/template.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index b70b3cf533..d85a518634 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -146,7 +146,7 @@ $CONFIG = array( "remember_login_cookie_lifetime" => 60*60*24*15, /* Custom CSP policy, changing this will overwrite the standard policy */ -"custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:", +"custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:; media-src *", /* The directory where the user data is stored, default to data in the owncloud * directory. The sqlite database is also stored here, when sqlite is used. diff --git a/lib/template.php b/lib/template.php index f007618ff1..781e43d2db 100644 --- a/lib/template.php +++ b/lib/template.php @@ -198,7 +198,8 @@ class OC_Template{ .'style-src \'self\' \'unsafe-inline\'; ' .'frame-src *; ' .'img-src *; ' - .'font-src \'self\' data:'); + .'font-src \'self\' data:; ' + .'media-src *'); header('Content-Security-Policy:'.$policy); // Standard $this->findTemplate($name); From 3d42d49d140534fd62c926c64bc0120094aade1c Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 24 Apr 2013 16:54:34 +0200 Subject: [PATCH 44/55] Add markdown to mimetype list --- lib/mimetypes.list.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/mimetypes.list.php b/lib/mimetypes.list.php index 86ce9c6c23..9135a7e3af 100644 --- a/lib/mimetypes.list.php +++ b/lib/mimetypes.list.php @@ -98,5 +98,9 @@ return array( 'epub' => 'application/epub+zip', 'mobi' => 'application/x-mobipocket-ebook', 'exe' => 'application', - 'msi' => 'application' + 'msi' => 'application', + 'md' => 'text/markdown', + 'markdown' => 'text/markdown', + 'mdown' => 'text/markdown', + 'mdwn' => 'text/markdown' ); From 88fd3b088d2ef54fee02431f6ad749723ce3ce4c Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 24 Apr 2013 17:46:20 +0200 Subject: [PATCH 45/55] [tx-robot] updated from transifex --- apps/files_external/l10n/cs_CZ.php | 1 + apps/files_external/l10n/es.php | 1 + apps/files_external/l10n/et_EE.php | 1 + apps/files_external/l10n/fi_FI.php | 1 + apps/files_external/l10n/gl.php | 1 + apps/files_external/l10n/it.php | 1 + apps/files_external/l10n/ja_JP.php | 1 + apps/files_external/l10n/ka_GE.php | 1 + apps/files_external/l10n/zh_CN.php | 1 + core/l10n/cs_CZ.php | 4 +-- l10n/af_ZA/files.po | 14 +++++--- l10n/ar/files.po | 18 ++++++---- l10n/be/files.po | 14 +++++--- l10n/bg_BG/files.po | 18 ++++++---- l10n/bn_BD/files.po | 16 +++++---- l10n/ca/files.po | 28 ++++++++------- l10n/cs_CZ/core.po | 9 ++--- l10n/cs_CZ/files.po | 20 ++++++----- l10n/cs_CZ/files_external.po | 8 ++--- l10n/cs_CZ/lib.po | 42 +++++++++++----------- l10n/cy_GB/files.po | 16 +++++---- l10n/da/files.po | 34 ++++++++++-------- l10n/de/files.po | 18 ++++++---- l10n/de_DE/files.po | 18 ++++++---- l10n/el/files.po | 34 ++++++++++-------- l10n/eo/files.po | 20 ++++++----- l10n/es/files.po | 42 ++++++++++++---------- l10n/es/files_external.po | 9 ++--- l10n/es_AR/files.po | 16 +++++---- l10n/et_EE/files.po | 20 ++++++----- l10n/et_EE/files_external.po | 8 ++--- l10n/eu/files.po | 22 +++++++----- l10n/fa/files.po | 22 +++++++----- l10n/fi/files.po | 14 +++++--- l10n/fi_FI/core.po | 56 ++++++++++++++--------------- l10n/fi_FI/files.po | 24 +++++++------ l10n/fi_FI/files_external.po | 8 ++--- l10n/fr/files.po | 48 +++++++++++++------------ l10n/gl/files.po | 24 +++++++------ l10n/gl/files_external.po | 8 ++--- l10n/he/files.po | 22 +++++++----- l10n/hi/files.po | 14 +++++--- l10n/hr/files.po | 20 ++++++----- l10n/hu_HU/files.po | 28 ++++++++------- l10n/hy/files.po | 14 +++++--- l10n/ia/files.po | 18 ++++++---- l10n/id/files.po | 24 +++++++------ l10n/is/files.po | 16 +++++---- l10n/it/files.po | 22 +++++++----- l10n/it/files_external.po | 8 ++--- l10n/ja_JP/files.po | 24 +++++++------ l10n/ja_JP/files_external.po | 10 +++--- l10n/ka/files.po | 14 +++++--- l10n/ka_GE/files.po | 14 +++++--- l10n/ka_GE/files_external.po | 8 ++--- l10n/kn/files.po | 14 +++++--- l10n/ko/files.po | 26 ++++++++------ l10n/ku_IQ/files.po | 14 +++++--- l10n/lb/files.po | 16 +++++---- l10n/lt_LT/files.po | 20 ++++++----- l10n/lv/files.po | 20 ++++++----- l10n/mk/files.po | 20 ++++++----- l10n/ms_MY/files.po | 22 +++++++----- l10n/my_MM/files.po | 14 +++++--- l10n/nb_NO/files.po | 32 +++++++++-------- l10n/ne/files.po | 14 +++++--- l10n/nl/files.po | 38 +++++++++++--------- l10n/nn_NO/files.po | 18 ++++++---- l10n/oc/files.po | 16 +++++---- l10n/pl/files.po | 34 ++++++++++-------- l10n/pl_PL/files.po | 14 +++++--- l10n/pt_BR/files.po | 38 +++++++++++--------- l10n/pt_PT/files.po | 30 +++++++++------- l10n/ro/files.po | 26 ++++++++------ l10n/ru/files.po | 42 ++++++++++++---------- l10n/ru_RU/files.po | 22 +++++++----- l10n/si_LK/files.po | 18 ++++++---- l10n/sk/files.po | 14 +++++--- l10n/sk_SK/files.po | 28 ++++++++------- l10n/sl/files.po | 14 +++++--- l10n/sq/files.po | 16 +++++---- l10n/sr/files.po | 22 +++++++----- l10n/sr@latin/files.po | 16 +++++---- l10n/sv/files.po | 28 ++++++++------- l10n/sw_KE/files.po | 14 +++++--- l10n/ta_LK/files.po | 16 +++++---- l10n/te/files.po | 16 +++++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 12 ++++--- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 6 ++-- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 18 ++++++---- l10n/tr/files.po | 28 ++++++++------- l10n/uk/files.po | 22 +++++++----- l10n/ur_PK/files.po | 14 +++++--- l10n/vi/files.po | 24 +++++++------ l10n/zh_CN.GB2312/files.po | 18 ++++++---- l10n/zh_CN/files.po | 16 +++++---- l10n/zh_CN/files_external.po | 9 ++--- l10n/zh_HK/files.po | 16 +++++---- l10n/zh_TW/files.po | 16 +++++---- 108 files changed, 1071 insertions(+), 755 deletions(-) diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index 20bbe8acba..12603044d6 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Varování: není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varování: není nainstalována, nebo povolena, podpora Curl v PHP. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje.", "External Storage" => "Externí úložiště", "Folder name" => "Název složky", "External storage" => "Externí úložiště", diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index da22f41032..59318d2395 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale.", "External Storage" => "Almacenamiento externo", "Folder name" => "Nombre de la carpeta", "External storage" => "Almacenamiento externo", diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 5d1eb0887b..5aea335ad6 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Viga Google Drive'i salvestusruumi seadistamisel", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Hoiatus: \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Hoiatus: FTP tugi puudub PHP paigalduses. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Hoiatus: Curl tugi puudub PHP paigalduses. Jagatud ownCloud / WebDAV või GoogleDrive ühendamine pole võimalik. Palu oma süsteemihalduril see paigaldada.", "External Storage" => "Väline salvestuskoht", "Folder name" => "Kausta nimi", "External storage" => "Väline andmehoidla", diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 2f7d65fbe9..ba39d140fb 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Virhe Google Drive levyn asetuksia tehtäessä", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Varoitus: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varoitus: PHP:n Curl-tuki ei ole käytössä tai sitä ei ole lainkaan asennettu. ownCloudin, WebDAV:in tai Google Driven liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan Curl-tuki käyttöön.", "External Storage" => "Erillinen tallennusväline", "Folder name" => "Kansion nimi", "External storage" => "Ulkoinen tallennustila", diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 715417e25a..77f23c39bc 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Produciuse un erro ao configurar o almacenamento en Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Aviso: A compatibilidade de Curl en PHP non está activada ou instalada. Non é posíbel a montaxe de ownCloud / WebDAV ou GoogleDrive. Consulte co administrador do sistema para instalala.", "External Storage" => "Almacenamento externo", "Folder name" => "Nome do cartafol", "External storage" => "Almacenamento externo", diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index d7e0c81a0b..4c70a04022 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Errore durante la configurazione dell'archivio Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Avviso: il supporto Curl di PHP non è abilitato o non è installato. Impossibile montare condivisioni ownCloud / WebDAV o GoogleDrive. Chiedi all'amministratore di sistema di installarlo.", "External Storage" => "Archiviazione esterna", "Folder name" => "Nome della cartella", "External storage" => "Archiviazione esterna", diff --git a/apps/files_external/l10n/ja_JP.php b/apps/files_external/l10n/ja_JP.php index 12a0b30938..97dd4e119d 100644 --- a/apps/files_external/l10n/ja_JP.php +++ b/apps/files_external/l10n/ja_JP.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Googleドライブストレージの設定エラー", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "警告: \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "警告: PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "警告: PHP の Curl サポートは無効もしくはインストールされていません。ownCloud / WebDAV もしくは GoogleDrive のマウントはできません。システム管理者にインストールをお願いして下さい。", "External Storage" => "外部ストレージ", "Folder name" => "フォルダ名", "External storage" => "外部ストレージ", diff --git a/apps/files_external/l10n/ka_GE.php b/apps/files_external/l10n/ka_GE.php index d10f82849d..b0845555b4 100644 --- a/apps/files_external/l10n/ka_GE.php +++ b/apps/files_external/l10n/ka_GE.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "შეცდომა Google Drive საცავის კონფიგურირების დროს", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "გაფრთხილება:PHP–ის Curl მხარდაჭერა არ არის ჩართული ან ინსტალირებული. ownCloud / WebDAV ან GoogleDrive–ის მონტირება შეუძლებელია. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის.", "External Storage" => "ექსტერნალ საცავი", "Folder name" => "ფოლდერის სახელი", "External storage" => "ექსტერნალ საცავი", diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 7f95320511..8157923183 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "配置Google Drive存储时出错", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "警告: PHP中未启用或未安装Curl支持。ownCloud / WebDAV 或 GoogleDrive 不能挂载。请请求您的系统管理员安装该它。", "External Storage" => "外部存储", "Folder name" => "目录名称", "External storage" => "外部存储", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 15c89106e5..f8d5e697eb 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -39,7 +39,7 @@ "today" => "dnes", "yesterday" => "včera", "{days} days ago" => "před {days} dny", -"last month" => "minulý mesíc", +"last month" => "minulý měsíc", "{months} months ago" => "před {months} měsíci", "months ago" => "před měsíci", "last year" => "minulý rok", @@ -82,7 +82,7 @@ "Password protected" => "Chráněno heslem", "Error unsetting expiration date" => "Chyba při odstraňování data vypršení platnosti", "Error setting expiration date" => "Chyba při nastavení data vypršení platnosti", -"Sending ..." => "Odesílám...", +"Sending ..." => "Odesílám ...", "Email sent" => "E-mail odeslán", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do evidence chyb ownCloud", "The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.", diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 46e77a89fa..a95700ff11 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 56662a6ad7..4e3be9dc4a 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmad Matalqah , 2013. -# , 2011, 2012. +# Matalqah , 2013 +# blackcoder , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -80,15 +80,19 @@ msgstr "مسار غير صحيح." msgid "Files" msgstr "الملفات" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "محذوف" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "إعادة تسميه" diff --git a/l10n/be/files.po b/l10n/be/files.po index ec67242474..f18fca6d7e 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 1e12a345fe..2af28b9ff3 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2011,2013. -# Yasen Pramatarov , 2012. +# Stefan Ilivanov , 2011,2013 +# Yasen Pramatarov , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -80,15 +80,19 @@ msgstr "Невалидна директория." msgid "Files" msgstr "Файлове" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Изтриване" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Преименуване" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 9a39dab1c1..ce584062db 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Shubhra Paul , 2013. +# Shubhra Paul , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -79,15 +79,19 @@ msgstr "ভুল ডিরেক্টরি" msgid "Files" msgstr "ফাইল" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "মুছে ফেল" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "পূনঃনামকরণ" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index ae6109e30f..3820c9d49c 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# , 2012. -# Josep Tomàs , 2012. -# , 2013. -# , 2011-2013. -# , 2013. +# bury1000 , 2012 +# jmontane , 2012 +# Josep Tomàs , 2012 +# Josep Tomàs , 2012 +# rogerc , 2013 +# rogerc , 2011-2013 +# aseques , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -85,15 +85,19 @@ msgstr "Directori no vàlid." msgid "Files" msgstr "Fitxers" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Suprimeix" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Reanomena" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index dc2cfb7f39..28cd00a94b 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# cernydav , 2013 # Jan Krejci , 2011 # Martin , 2011-2012 # Michal Hrušecký , 2012 @@ -11,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:58+0200\n" -"PO-Revision-Date: 2013-04-23 11:53+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:20+0000\n" "Last-Translator: cernydav \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -198,7 +199,7 @@ msgstr "před {days} dny" #: js/js.js:726 msgid "last month" -msgstr "minulý mesíc" +msgstr "minulý měsíc" #: js/js.js:727 msgid "{months} months ago" @@ -375,7 +376,7 @@ msgstr "Chyba při nastavení data vypršení platnosti" #: js/share.js:604 msgid "Sending ..." -msgstr "Odesílám..." +msgstr "Odesílám ..." #: js/share.js:615 msgid "Email sent" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index d5d74b7b83..35fc98f58f 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2011-2012. -# Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012-2013. +# Martin , 2011-2012 +# Michal Hrušecký , 2012 +# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -81,15 +81,19 @@ msgstr "Neplatný adresář" msgid "Files" msgstr "Soubory" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Smazat" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Přejmenovat" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 09b4c042c2..cd3761b8b5 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 07:10+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,7 +59,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Varování: není nainstalována, nebo povolena, podpora Curl v PHP. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index aeba218b37..13b309d2ad 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -115,72 +115,72 @@ msgstr "V názvu databáze %s nesmíte používat tečky." msgid "%s set the database host." msgstr "Zadejte název počítače s databází %s." -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "Uživatelské jméno, či heslo PostgreSQL není platné" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadat existující účet, či správce." -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "Uživatelské jméno, či heslo Oracle není platné" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "Uživatelské jméno, či heslo MySQL není platné" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba DB: \"%s\"" -#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 -#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "Podezřelý příkaz byl: \"%s\"" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "Uživatel '%s'@'localhost' již v MySQL existuje." -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "Zahodit uživatele z MySQL" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "Uživatel '%s'@'%%' již v MySQL existuje" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "Zahodit uživatele z MySQL." -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Podezřelý příkaz byl: \"%s\", jméno: %s, heslo: %s" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "Uživatelské jméno, či heslo MSSQL není platné: %s" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 21de4f158f..9c35415365 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:57+0200\n" -"PO-Revision-Date: 2013-04-21 20:50+0000\n" -"Last-Translator: ubuntucymraeg \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,15 +79,19 @@ msgstr "Cyfeiriadur annilys." msgid "Files" msgstr "Ffeiliau" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Dileu" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Ailenwi" diff --git a/l10n/da/files.po b/l10n/da/files.po index c43e600f79..180b7728d4 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -3,22 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Frederik Lassen , 2013. -# Morten Juhl-Johansen Zölde-Fejér , 2011-2013. -# Ole Holm Frandsen , 2012. -# , 2012. -# Pascal d'Hermilly , 2011. -# , 2012. -# Thomas , 2013. -# Thomas Tanghus <>, 2012. -# Thomas Tanghus , 2012. +# cronner , 2012 +# Frederik Lassen , 2013 +# Morten Juhl-Johansen Zölde-Fejér , 2011-2013 +# Ole Holm Frandsen , 2012 +# osos , 2012 +# Pascal d'Hermilly , 2011 +# muunsim , 2012 +# cronner , 2013 +# Thomas Tanghus , 2012 +# Thomas Tanghus , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -88,15 +88,19 @@ msgstr "Ugyldig mappe." msgid "Files" msgstr "Filer" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Slet" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Omdøb" diff --git a/l10n/de/files.po b/l10n/de/files.po index c401e3168d..605d246737 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -14,7 +14,7 @@ # fmms , 2012 # Marcel Kühlhorn , 2012-2013 # thiel , 2013 -# Michael Krell , 2012 +# Michael Krell, 2012 # piccobello , 2012 # JamFX , 2012 # Phi Lieb <>, 2012 @@ -29,9 +29,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" -"PO-Revision-Date: 2013-04-17 07:21+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,15 +100,19 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Permanent löschen" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Löschen" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Umbenennen" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 0e5e25200e..bb50bf6b99 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -16,7 +16,7 @@ # fmms , 2012 # Marcel Kühlhorn , 2012-2013 # thiel , 2013 -# Michael Krell , 2012 +# Michael Krell, 2012 # piccobello , 2012 # JamFX , 2012 # Phi Lieb <>, 2012 @@ -34,9 +34,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" -"PO-Revision-Date: 2013-04-17 08:22+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -105,15 +105,19 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Entgültig löschen" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Löschen" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Umbenennen" diff --git a/l10n/el/files.po b/l10n/el/files.po index 6d69eade9c..c580f974d5 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -3,22 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Axilleas Pi , 2013. -# Dimitris M. , 2012-2013. -# Efstathios Iosifidis , 2012-2013. -# Efstathios Iosifidis , 2013. -# Efstathios Iosifidis , 2012. -# Konstantinos Tzanidis , 2012. -# Marios Bekatoros <>, 2012. -# Petros Kyladitis , 2011-2013. -# Wasilis Mandratzis , 2013. -# Γιάννης Ανθυμίδης , 2012. +# axil Pι , 2013 +# Dimitris M. , 2012-2013 +# Efstathios Iosifidis , 2012-2013 +# Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2012 +# Konstantinos Tzanidis , 2012 +# Marios Bekatoros <>, 2012 +# Petros Kyladitis , 2011-2013 +# Wasilis , 2013 +# Γιάννης Ανθυμίδης , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -88,15 +88,19 @@ msgstr "Μη έγκυρος φάκελος." msgid "Files" msgstr "Αρχεία" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Διαγραφή" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Μετονομασία" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index fb3dd94df1..ed1fcd6630 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2013. -# Mariano , 2012. -# , 2011, 2012. +# Mariano , 2013 +# Mariano , 2012 +# Mariano , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -81,15 +81,19 @@ msgstr "Nevalida dosierujo." msgid "Files" msgstr "Dosieroj" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Forigi" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Alinomigi" diff --git a/l10n/es/files.po b/l10n/es/files.po index 711f2bc086..c424ef4e47 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -3,26 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario <>, 2012. -# Agustin Ferrario , 2013. -# , 2013. -# , 2012. -# Javier Llorente , 2012. -# , 2013. -# , 2012-2013. -# , 2013. -# Ricardo A. Hermosilla Carrillo , 2013. -# Rubén Trujillo , 2012. -# , 2013. -# , 2011-2012. -# , 2012. -# Vladimir Martinez Sierra , 2013. +# Agustin Ferrario , 2012 +# Agustin Ferrario , 2013 +# telco2011 , 2013 +# Luis Medina , 2012 +# Javier Llorente , 2012 +# juanman , 2013 +# juanman , 2012-2013 +# karv , 2013 +# Ricardo Hermosilla , 2013 +# Rubén Trujillo , 2012 +# xsergiolpx , 2013 +# xsergiolpx , 2011-2012 +# scambra , 2012 +# msvladimir , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -92,15 +92,19 @@ msgstr "Directorio invalido." msgid "Files" msgstr "Archivos" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Eliminar" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Renombrar" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index eca7508d47..8e3a88466f 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -4,6 +4,7 @@ # # Translators: # Agustin Ferrario , 2012 +# Art O. Pal , 2013 # Javier Llorente , 2012 # Marcos , 2013 # pedro.navia , 2012 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 03:10+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,7 +61,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index cd36082331..2f839afbf4 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-20 01:58+0200\n" -"PO-Revision-Date: 2013-04-19 09:10+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,15 +82,19 @@ msgstr "Directorio invalido." msgid "Files" msgstr "Archivos" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Borrar de manera permanente" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Borrar" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Cambiar nombre" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 9bfc400f49..bd785634e2 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Pisike Sipelgas , 2013. -# Rivo Zängov , 2011-2013. +# dagor , 2012 +# pisike.sipelgas , 2013 +# Rivo Zängov , 2011-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -81,15 +81,19 @@ msgstr "Vigane kaust." msgid "Files" msgstr "Failid" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Kustuta" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "ümber" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 9c5eea8899..086a2c0daa 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 11:11+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Hoiatus: Curl tugi puudub PHP paigalduses. Jagatud ownCloud / WebDAV või GoogleDrive ühendamine pole võimalik. Palu oma süsteemihalduril see paigaldada." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 0f710284f4..7ce4264ce9 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Asier Urio Larrea , 2011. -# Piarres Beobide , 2012-2013. +# asieriko , 2013 +# asieriko , 2012 +# asieriko , 2011 +# Piarres Beobide , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -82,15 +82,19 @@ msgstr "Baliogabeko karpeta." msgid "Files" msgstr "Fitxategiak" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Ezabatu" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Berrizendatu" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 6e2cacffc3..d4cb2ff72a 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hossein nag , 2012. -# mahdi Kereshteh , 2013. -# Mohammad Dashtizadeh , 2012. -# vahid chakoshy , 2012. +# Hossein nag , 2012 +# miki_mika1362 , 2013 +# Mohammad Dashtizadeh , 2012 +# vahid chakoshy , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -82,15 +82,19 @@ msgstr "فهرست راهنما نامعتبر می باشد." msgid "Files" msgstr "فایل ها" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "پاک کردن" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "تغییرنام" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index ccb82381a2..ded6b0408d 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 80f0f53b37..65526698a2 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Jesse Jaara , 2012. -# Jiri Grönroos , 2012-2013. -# Johannes Korpela <>, 2012. -# Pekka Sutela , 2012. -# , 2012. -# , 2012. +# variaatiox , 2012 +# Jesse Jaara , 2012 +# Jiri Grönroos , 2012-2013 +# Johannes Korpela <>, 2012 +# Pekka Sutela , 2012 +# teho , 2012 +# tscooter , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 05:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -300,7 +300,7 @@ msgstr "Jaa linkillä" msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Salasana" @@ -416,7 +416,7 @@ msgid "Request failed!" msgstr "Pyyntö epäonnistui!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Käyttäjätunnus" @@ -526,37 +526,37 @@ msgstr "Lisäasetukset" msgid "Data folder" msgstr "Datakansio" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Muokkaa tietokantaa" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "käytetään" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Tietokannan käyttäjä" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Viimeistele asennus" @@ -568,33 +568,33 @@ msgstr "verkkopalvelut hallinnassasi" msgid "Log out" msgstr "Kirjaudu ulos" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automaattinen sisäänkirjautuminen hylättiin!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "muista" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Kirjaudu sisään" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Vaihtoehtoiset kirjautumiset" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index d68085e964..8a43abc930 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jesse Jaara , 2012. -# Jiri Grönroos , 2012-2013. -# Johannes Korpela <>, 2012. -# , 2012. -# , 2012. +# Jesse Jaara , 2012 +# Jiri Grönroos , 2012-2013 +# Johannes Korpela <>, 2012 +# teho , 2012 +# tscooter , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -83,15 +83,19 @@ msgstr "Virheellinen kansio." msgid "Files" msgstr "Tiedostot" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Poista" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Nimeä uudelleen" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 21ef4e3d13..b34cf9d005 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 06:00+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +58,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Varoitus: PHP:n Curl-tuki ei ole käytössä tai sitä ei ole lainkaan asennettu. ownCloudin, WebDAV:in tai Google Driven liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan Curl-tuki käyttöön." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index e694e54615..d776254f28 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -3,29 +3,29 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adalberto Rodrigues , 2013. -# Cédric MARTIN , 2013. -# Christophe Lherieau , 2012-2013. -# Cyril Glapa , 2012. -# David Basquin , 2013. -# , 2013. -# froozeify , 2013. -# Geoffrey Guerrier , 2012. -# , 2012. -# , 2012. -# Guillaume Paumier , 2012. -# , 2012. -# Nahir Mohamed , 2012. -# Robert Di Rosa <>, 2012-2013. -# , 2011. -# Romain DEP. , 2012-2013. -# , 2013. +# Adalberto Rodrigues , 2013 +# Flywall , 2013 +# Christophe Lherieau , 2012-2013 +# Cyril Glapa , 2012 +# dbasquin , 2013 +# dbasquin , 2013 +# froozeify , 2013 +# Geoffrey Guerrier , 2012 +# gp4004 , 2012 +# guiguidu31300 , 2012 +# Guillaume Paumier , 2012 +# ytzelf , 2012 +# Nahir Mohamed , 2012 +# Robert Di Rosa <>, 2012-2013 +# Romain DEP. , 2011 +# Romain DEP. , 2012-2013 +# Zertrin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -95,15 +95,19 @@ msgstr "Dossier invalide." msgid "Files" msgstr "Fichiers" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Supprimer" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Renommer" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index b257aba173..c7ff5f644c 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# antiparvos , 2012-2013. -# , 2013. -# , 2013. -# Miguel Anxo Bouzada , 2013. -# Xosé M. Lamas , 2012-2013. +# antiparvos , 2012-2013 +# mbouzada , 2013 +# mbouzada , 2013 +# mbouzada , 2013 +# Xosé M. Lamas , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -83,15 +83,19 @@ msgstr "O directorio é incorrecto." msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Eliminar" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Renomear" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index e8752349ec..80aa88f4a7 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 06:10+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +58,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Aviso: A compatibilidade de Curl en PHP non está activada ou instalada. Non é posíbel a montaxe de ownCloud / WebDAV ou GoogleDrive. Consulte co administrador do sistema para instalala." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/he/files.po b/l10n/he/files.po index 6880b3e051..345ef6e6eb 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dovix Dovix , 2012. -# , 2012. -# , 2011. -# Yaron Shahrabani , 2012. +# Dovix Dovix , 2012 +# idop , 2012 +# Tomer Cohen , 2011 +# Yaron Shahrabani , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -82,15 +82,19 @@ msgstr "" msgid "Files" msgstr "קבצים" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "מחיקה" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "שינוי שם" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 058c4dc6c9..0e6c151453 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index d1184dcf60..0a4edf8fb6 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Davor Kustec , 2011, 2012. -# , 2012. -# Thomas Silađi , 2012. +# Davor Kustec , 2011, 2012 +# fposavec , 2012 +# Thomas Silađi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -81,15 +81,19 @@ msgstr "" msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Briši" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Promjeni ime" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index c9c6e0609e..c2d29a28f4 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Toth , 2012. -# Akos , 2013. -# , 2013. -# , 2013. -# Laszlo Tornoci , 2013. -# , 2011. -# Peter Borsa , 2011. +# Adam Toth , 2012 +# akoscomp , 2013 +# gyeben , 2013 +# gyeben , 2013 +# Laszlo Tornoci , 2013 +# Tamas Nagy , 2011 +# Peter Borsa , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -85,15 +85,19 @@ msgstr "Érvénytelen mappa." msgid "Files" msgstr "Fájlok" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Törlés" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Átnevezés" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 2bb63c0f9e..470a8d7a22 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Ջնջել" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index db3b51415e..d82a372bae 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Emilio Sepúlveda , 2011. -# Emilio Sepúlveda , 2012. +# Emilio Sepúlveda , 2011 +# Emilio Sepúlveda , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -80,15 +80,19 @@ msgstr "" msgid "Files" msgstr "Files" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Deler" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index cd5200faba..a1c35c32cf 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Muhammad Fauzan , 2012. -# Muhammad Panji , 2012. -# Muhammad Radifar , 2011. -# , 2013. -# Widya Walesa , 2013. +# Muhammad Fauzan , 2012 +# Muhammad Panji , 2012 +# Muhammad Radifar , 2011 +# rodin , 2013 +# w41l , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -83,15 +83,19 @@ msgstr "Direktori tidak valid." msgid "Files" msgstr "Berkas" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Hapus" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Ubah nama" diff --git a/l10n/is/files.po b/l10n/is/files.po index f2748bea44..4a8254ee22 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012-2013. +# sveinn , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -79,15 +79,19 @@ msgstr "Ógild mappa." msgid "Files" msgstr "Skrár" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Eyða" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Endurskýra" diff --git a/l10n/it/files.po b/l10n/it/files.po index dc9bdc115b..5473d05bee 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. -# Francesco Apruzzese , 2011. -# , 2012. -# Vincenzo Reale , 2012-2013. +# zimba12 , 2011 +# Francesco Apruzzese , 2011 +# ufic , 2012 +# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -82,15 +82,19 @@ msgstr "Cartella non valida." msgid "Files" msgstr "File" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Elimina" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Rinomina" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 54bc3a2073..617b253e7a 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 00:10+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Avviso: il supporto Curl di PHP non è abilitato o non è installato. Impossibile montare condivisioni ownCloud / WebDAV o GoogleDrive. Chiedi all'amministratore di sistema di installarlo." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 8348f354bd..a2e2db40fb 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012-2013. -# , 2012. -# , 2012. -# YANO Tetsu , 2013. +# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2012-2013 +# tt yn , 2012 +# tt yn , 2012 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -83,15 +83,19 @@ msgstr "無効なディレクトリです。" msgid "Files" msgstr "ファイル" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "完全に削除する" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "削除" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "名前の変更" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 0ac65fbf27..19b118939c 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -4,15 +4,15 @@ # # Translators: # Daisuke Deguchi , 2012 -# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2012-2013 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 04:20+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +58,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "警告: PHP の Curl サポートは無効もしくはインストールされていません。ownCloud / WebDAV もしくは GoogleDrive のマウントはできません。システム管理者にインストールをお願いして下さい。" #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 6dcd0b94c0..23ea7ef073 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "ფაილები" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 8750ca1cf1..8e4edac3ec 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:57+0200\n" -"PO-Revision-Date: 2013-04-21 18:40+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -80,15 +80,19 @@ msgstr "დაუშვებელი დირექტორია." msgid "Files" msgstr "ფაილები" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "წაშლა" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "გადარქმევა" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 0fdec97c27..1d05630077 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 09:00+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "გაფრთხილება:PHP–ის Curl მხარდაჭერა არ არის ჩართული ან ინსტალირებული. ownCloud / WebDAV ან GoogleDrive–ის მონტირება შეუძლებელია. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 1345b2d0fe..47b4157d6f 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 08e22f63b5..76c1d9e6c9 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# 남자사람 , 2012. -# Harim Park , 2013. -# , 2012. -# Park Shinjo , 2013. -# Shinjo Park , 2012. +# aoiob4305 , 2013 +# 남자사람 , 2012 +# Harim Park , 2013 +# yunhye , 2012 +# Shinjo Park , 2013 +# Shinjo Park , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -84,15 +84,19 @@ msgstr "올바르지 않은 디렉터리입니다." msgid "Files" msgstr "파일" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "삭제" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "이름 바꾸기" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 1ea4fe01e8..2d8063ea29 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 8aa5780abd..65448a2433 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011-2012. +# sim0n , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -79,15 +79,19 @@ msgstr "" msgid "Files" msgstr "Dateien" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Läschen" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 7bc5f5a3e2..a8ef079cd1 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Denisas Kulumbegašvili <>, 2012. -# Dr. ROX , 2011, 2012. +# andrejuseu , 2012 +# Denisas Kulumbegašvili <>, 2012 +# Dr. ROX , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -81,15 +81,19 @@ msgstr "" msgid "Files" msgstr "Failai" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Ištrinti" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Pervadinti" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index de2375feaa..8c0a4c852f 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Imants Liepiņš , 2012. -# Rūdolfs Mazurs , 2013. +# CPDZ , 2012 +# Imants Liepiņš , 2012 +# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -81,15 +81,19 @@ msgstr "Nederīga direktorija." msgid "Files" msgstr "Datnes" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Dzēst" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Pārsaukt" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index f6c46aea44..58ca65076d 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. -# Miroslav Jovanovic , 2012. -# Miroslav Jovanovic , 2012. +# Georgi Stanojevski , 2012 +# Miroslav Jovanovic , 2012 +# Miroslav Jovanovic , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -81,15 +81,19 @@ msgstr "" msgid "Files" msgstr "Датотеки" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Избриши" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Преименувај" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index e6c9a00ff3..c4d70c18af 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmed Noor Kader Mustajir Md Eusoff , 2012. -# , 2011, 2012. -# Hadri Hilmi , 2012. -# Zulhilmi Rosnin , 2012. +# Ahmed Noor Kader Mustajir Md Eusoff , 2012 +# Hadri Hilmi , 2011, 2012 +# Hadri Hilmi , 2012 +# Zulhilmi Rosnin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -82,15 +82,19 @@ msgstr "" msgid "Files" msgstr "fail" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Padam" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 1c3bdb9087..96285df2a3 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "ဖိုင်များ" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 270f2a77d9..a7f1f1fb52 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -3,21 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011, 2012. -# Arvid Nornes , 2012. -# Christer Eriksson , 2012. -# Daniel , 2012. -# , 2012. -# , 2012. -# , 2012. -# , 2012. -# , 2012. +# anjar , 2011, 2012 +# Arvid Nornes , 2012 +# Christer Eriksson , 2012 +# Daniel , 2012 +# espenbye , 2012 +# hdalgrav , 2012 +# olamaekle , 2012 +# runesudden , 2012 +# sindrejh , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -87,15 +87,19 @@ msgstr "" msgid "Files" msgstr "Filer" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Slett" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Omdøp" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 186deace5c..f3a5af8475 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index a3c69c4f2d..38a44f2f73 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -3,24 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012-2013. -# , 2011. -# , 2011. -# , 2012. -# Erik Bent , 2012. -# , 2011. -# , 2012. -# , 2011. -# , 2012. -# , 2012. -# Richard Bos , 2012. -# Wilfred Dijksman , 2013. +# André Koot , 2012-2013 +# isama , 2011 +# bartv , 2011 +# diederikdehaas , 2012 +# Erik Bent , 2012 +# Robin Appelman , 2011 +# jgelauff , 2012 +# koenvervloesem , 2011 +# Len , 2012 +# Pietje8501 , 2012 +# Richard Bos , 2012 +# Wilfred Dijksman , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -90,15 +90,19 @@ msgstr "Ongeldige directory." msgid "Files" msgstr "Bestanden" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Verwijder" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Hernoem" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index ff7697f86e..33381bd293 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2011. +# erviker , 2012 +# unhammer , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -80,15 +80,19 @@ msgstr "" msgid "Files" msgstr "Filer" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Slett" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 1a86e26f56..f414354f14 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# tartafione , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -79,15 +79,19 @@ msgstr "" msgid "Files" msgstr "Fichièrs" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Escafa" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Torna nomenar" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 3361b9741f..124aaa0de5 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -3,22 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012-2013. -# Maciej Tarmas , 2013. -# Marcin Małecki , 2011-2012. -# Mariusz , 2013. -# , 2011. -# , 2012. -# Piotr Sokół , 2012. -# , 2012. +# bbartlomiej , 2013 +# Cyryl Sochacki , 2012 +# Cyryl Sochacki , 2012-2013 +# Maciej Tarmas , 2013 +# Marcin Małecki , 2011-2012 +# Mariusz Fik , 2013 +# , 2011 +# emc , 2012 +# Piotr Sokół , 2012 +# Thomasso , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -88,15 +88,19 @@ msgstr "Zła ścieżka." msgid "Files" msgstr "Pliki" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Usuń" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Zmień nazwę" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 6c5cbd655c..e90edadb46 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 1347204dd4..6f7bc462b8 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -3,24 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# , 2012. -# Guilherme Maluf Balzana , 2012. -# , 2012. -# Rodrigo Tavares , 2013. -# Sedir G. Morais , 2013. -# , 2012. -# Thiago Vicente , 2012. -# Tulio Simoes Martins Padilha , 2013. -# Unforgiving Fallout <>, 2012. -# Van Der Fran , 2011, 2012. +# dudanogueira , 2013 +# dudanogueira , 2012 +# FredMaranhao , 2012 +# Guilherme Maluf Balzana , 2012 +# sedir , 2012 +# Rodrigo Tavares , 2013 +# sedir , 2013 +# targinosilveira , 2012 +# Thiago Vicente , 2012 +# tuliouel , 2013 +# Unforgiving Fallout <>, 2012 +# Van Der Fran , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -90,15 +90,19 @@ msgstr "Diretório inválido." msgid "Files" msgstr "Arquivos" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Excluir" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Renomear" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 6794c27ed3..303d309678 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012-2013. -# Daniel Pinto , 2013. -# , 2013. -# Duarte Velez Grilo , 2012. -# , 2012. -# Helder Meneses , 2012-2013. -# Miguel Sousa , 2013. -# , 2012. +# Mouxy , 2012-2013 +# Mouxy , 2013 +# Duarte Velez Grilo , 2013 +# Duarte Velez Grilo , 2012 +# rlameiro , 2012 +# Helder Meneses , 2012-2013 +# Miguel Sousa , 2013 +# rjgpp1994 , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -86,15 +86,19 @@ msgstr "Directório Inválido" msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Apagar" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Renomear" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index e15f6abff9..1acc17d956 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu , 2011-2013. -# Dimon Pockemon <>, 2012. -# Dumitru Ursu <>, 2013. -# Eugen Mihalache , 2012. -# , 2012-2013. -# , 2012. +# Claudiu , 2011-2013 +# Dimon Pockemon <>, 2012 +# Dimon Pockemon <>, 2013 +# Eugen Mihalache , 2012 +# g.ciprian , 2012-2013 +# laurentiucristescu , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -84,15 +84,19 @@ msgstr "Director invalid." msgid "Files" msgstr "Fișiere" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Șterge" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Redenumire" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index d532da2e90..49a330d958 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -3,26 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012. -# , 2012. -# , 2012. -# , 2012. -# Nick Remeslennikov , 2012. -# , 2012. -# Sergey , 2013. -# , 2013. -# , 2012. -# , 2011. -# Victor Ashirov , 2013. -# Victor Bravo <>, 2012. -# , 2012. -# Дмитрий , 2013. +# Denis , 2012 +# jekader , 2012 +# Yaroslav Petrov , 2012 +# mPolr , 2012 +# Nick Remeslennikov , 2012 +# sam002 , 2012 +# m4rkell , 2013 +# adol , 2013 +# skoptev , 2012 +# tonymc , 2011 +# unixoid , 2013 +# Victor Bravo <>, 2012 +# VicDeo , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -92,15 +92,19 @@ msgstr "Неправильный каталог." msgid "Files" msgstr "Файлы" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Удалено навсегда" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Удалить" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Переименовать" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 4e3eddace5..b48157bd8c 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# , 2012. -# Дмитрий , 2013. +# AnnaSch , 2013 +# AnnaSch , 2012 +# skoptev , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -82,15 +82,19 @@ msgstr "Неверный каталог." msgid "Files" msgstr "Файлы" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Удалить навсегда" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Удалить" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Переименовать" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 3b5c8990fb..b45d15a72e 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. -# Chamara Disanayake , 2012. +# Anushke Guneratne , 2012 +# Chamara Disanayake , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -80,15 +80,19 @@ msgstr "" msgid "Files" msgstr "ගොනු" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "මකන්න" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "නැවත නම් කරන්න" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 858044fcb8..89495fb23a 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index e5dac9f965..2401273827 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# georg , 2013. -# , 2012. -# Marián Hvolka , 2013. -# , 2012. -# Martin Zatroch , 2013. -# Roman Priesol , 2012. -# , 2012. +# georg007 , 2013 +# intense , 2012 +# mhh , 2013 +# martinb , 2012 +# martin , 2013 +# Roman Priesol , 2012 +# martin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -85,15 +85,19 @@ msgstr "Neplatný priečinok" msgid "Files" msgstr "Súbory" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Odstrániť" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Premenovať" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 1c0597e776..ec5cce5e76 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-20 01:58+0200\n" -"PO-Revision-Date: 2013-04-19 20:20+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -83,15 +83,19 @@ msgstr "Neveljavna mapa." msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Izbriši trajno" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Izbriši" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Preimenuj" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 3915e15310..606f9f1ae1 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. +# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -79,15 +79,19 @@ msgstr "Dosje e pavlefshme." msgid "Files" msgstr "Skedarët" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Elimino përfundimisht" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Elimino" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Riemërto" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 18eacafc8b..71ea6e3279 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivan Petrović , 2012. -# Slobodan Terzić , 2011, 2012. -# , 2013. -# , 2012. +# Ivan Petrović , 2012 +# Slobodan Terzić , 2011, 2012 +# Rancher , 2013 +# Rancher , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -82,15 +82,19 @@ msgstr "неисправна фасцикла." msgid "Files" msgstr "Датотеке" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Обриши" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Преименуј" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 20a4cf13bc..9d672c481c 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Slobodan Terzić , 2011. +# Slobodan Terzić , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -79,15 +79,19 @@ msgstr "" msgid "Files" msgstr "Fajlovi" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Obriši" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index f18dad2214..de62909653 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André , 2013. -# Christer Eriksson , 2012. -# Daniel Sandman , 2012. -# Magnus Höglund , 2012-2013. -# , 2012. -# , 2011, 2012. -# , 2012. +# Lokal_Profil , 2013 +# Christer Eriksson , 2012 +# Daniel Sandman , 2012 +# Magnus Höglund , 2012-2013 +# Magnus Höglund , 2012 +# Daniel Sandman , 2011, 2012 +# tscooter , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -85,15 +85,19 @@ msgstr "Felaktig mapp." msgid "Files" msgstr "Filer" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Radera" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Byt namn" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index 5dd812bc1b..b82d85ea2a 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index f26efe9217..55acdc040e 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -79,15 +79,19 @@ msgstr "" msgid "Files" msgstr "கோப்புகள்" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "அழிக்க" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "பெயர்மாற்றம்" diff --git a/l10n/te/files.po b/l10n/te/files.po index 47cac8cd8a..3b3bfad5c4 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# వీవెన్ , 2013. +# వీవెన్ , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -79,15 +79,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "తొలగించు" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 706fa39233..cbe68a6ffc 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 52d4e76525..323ff19b35 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 8e1be37d0d..9aa2cf650f 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index e9cd516f46..66d0beacb1 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index fbf9dc8457..a5f57b921a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index ff9afc80f2..45a6030b24 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 79299d9323..1e13c1cd46 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 9adf4adbcf..6980695d55 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -172,13 +172,13 @@ msgstr "" msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:854 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:855 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index c3cdbf5544..82ef792603 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:58+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 2536bd0661..d789d64047 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 9bdcf398ab..f1a95dae40 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 76c99829ca..59a3de6acb 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013. -# AriesAnywhere Anywhere , 2012. +# AriesAnywhere Anywhere , 2012-2013 +# AriesAnywhere Anywhere , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -80,15 +80,19 @@ msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" msgid "Files" msgstr "ไฟล์" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "ลบ" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "เปลี่ยนชื่อ" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index c9fcbdb563..634affc9c2 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Aranel Surion , 2011, 2012. -# Caner Başaran , 2012. -# Emre , 2012. -# , 2012. -# ismail yenigul , 2013. -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# Aranel Surion , 2011, 2012 +# Caner Başaran , 2012 +# Emre Saraçoğlu , 2012 +# alpere , 2012 +# ismail yenigül , 2013 +# Necdet Yücel , 2012 +# atakan96 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -85,15 +85,19 @@ msgstr "Geçersiz dizin." msgid "Files" msgstr "Dosyalar" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Sil" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "İsim değiştir." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 3afb162edb..ee7f46e413 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# Soul Kim , 2012. -# пан Володимир , 2013. +# Dmytro Dzubenko , 2012 +# skoptev , 2012 +# Soul Kim , 2012 +# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -82,15 +82,19 @@ msgstr "Невірний каталог." msgid "Files" msgstr "Файли" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Видалити" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Перейменувати" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index acb0e8f71a..2fe3e109a4 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -78,15 +78,19 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 79bf00204a..01777fb8c7 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# , 2012. -# sao sang , 2013. -# Sơn Nguyễn , 2012. +# khanhnd , 2012 +# mattheu_9x , 2012 +# mattheu_9x , 2012 +# saosangm , 2013 +# Sơn Nguyễn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -83,15 +83,19 @@ msgstr "Thư mục không hợp lệ" msgid "Files" msgstr "Tập tin" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "Xóa" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "Sửa tên" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index e08b45e55c..55d0b39f86 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# marguerite su , 2012. +# bluehattree , 2012 +# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -80,15 +80,19 @@ msgstr "" msgid "Files" msgstr "文件" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "删除" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "重命名" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 60bf28f2cd..0ece5eedbf 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 14:40+0000\n" -"Last-Translator: zhangmin \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,15 +86,19 @@ msgstr "无效文件夹。" msgid "Files" msgstr "文件" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "删除" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "重命名" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index dc837d80a4..9ee0d64daf 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -6,13 +6,14 @@ # hanfeng , 2012 # Dianjin Wang <1132321739qq@gmail.com>, 2012 # marguerite su , 2013 +# zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 04:00+0000\n" +"Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +59,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "警告: PHP中未启用或未安装Curl支持。ownCloud / WebDAV 或 GoogleDrive 不能挂载。请请求您的系统管理员安装该它。" #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 4bdea350bb..64913d6656 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. +# amanda.shuuemura , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -79,15 +79,19 @@ msgstr "" msgid "Files" msgstr "文件" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "刪除" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 3ef4705fcd..9493d1b048 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-20 01:58+0200\n" -"PO-Revision-Date: 2013-04-19 04:10+0000\n" -"Last-Translator: admachen \n" +"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,15 +87,19 @@ msgstr "無效的資料夾。" msgid "Files" msgstr "檔案" -#: js/fileactions.js:125 +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "刪除" -#: js/fileactions.js:193 +#: js/fileactions.js:194 msgid "Rename" msgstr "重新命名" From 62b9c88bb909212ac96018fed69bb225bd391619 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 24 Apr 2013 18:31:36 +0200 Subject: [PATCH 46/55] [tx-robot] updated from transifex --- apps/files/l10n/ar.php | 1 + apps/files/l10n/bg_BG.php | 1 + apps/files/l10n/bn_BD.php | 1 + apps/files/l10n/ca.php | 1 + apps/files/l10n/cs_CZ.php | 1 + apps/files/l10n/cy_GB.php | 1 + apps/files/l10n/da.php | 1 + apps/files/l10n/de.php | 1 + apps/files/l10n/de_DE.php | 1 + apps/files/l10n/el.php | 1 + apps/files/l10n/eo.php | 1 + apps/files/l10n/es.php | 1 + apps/files/l10n/es_AR.php | 1 + apps/files/l10n/et_EE.php | 1 + apps/files/l10n/eu.php | 1 + apps/files/l10n/fa.php | 1 + apps/files/l10n/fi_FI.php | 1 + apps/files/l10n/fr.php | 1 + apps/files/l10n/gl.php | 1 + apps/files/l10n/he.php | 1 + apps/files/l10n/hr.php | 1 + apps/files/l10n/hu_HU.php | 1 + apps/files/l10n/ia.php | 1 + apps/files/l10n/id.php | 1 + apps/files/l10n/is.php | 1 + apps/files/l10n/it.php | 1 + apps/files/l10n/ja_JP.php | 1 + apps/files/l10n/ka_GE.php | 1 + apps/files/l10n/ko.php | 1 + apps/files/l10n/lb.php | 1 + apps/files/l10n/lt_LT.php | 1 + apps/files/l10n/lv.php | 1 + apps/files/l10n/mk.php | 1 + apps/files/l10n/ms_MY.php | 1 + apps/files/l10n/nb_NO.php | 1 + apps/files/l10n/nl.php | 1 + apps/files/l10n/oc.php | 1 + apps/files/l10n/pl.php | 1 + apps/files/l10n/pt_BR.php | 1 + apps/files/l10n/pt_PT.php | 1 + apps/files/l10n/ro.php | 1 + apps/files/l10n/ru.php | 1 + apps/files/l10n/ru_RU.php | 1 + apps/files/l10n/si_LK.php | 1 + apps/files/l10n/sk_SK.php | 1 + apps/files/l10n/sl.php | 1 + apps/files/l10n/sq.php | 1 + apps/files/l10n/sr.php | 1 + apps/files/l10n/sv.php | 1 + apps/files/l10n/ta_LK.php | 1 + apps/files/l10n/th_TH.php | 1 + apps/files/l10n/tr.php | 1 + apps/files/l10n/uk.php | 1 + apps/files/l10n/vi.php | 1 + apps/files/l10n/zh_CN.GB2312.php | 1 + apps/files/l10n/zh_CN.php | 1 + apps/files/l10n/zh_HK.php | 1 + apps/files/l10n/zh_TW.php | 1 + l10n/ar/core.po | 50 ++++++++++----------- l10n/ar/files.po | 6 +-- l10n/bg_BG/core.po | 4 +- l10n/bg_BG/files.po | 6 +-- l10n/bn_BD/core.po | 46 +++++++++---------- l10n/bn_BD/files.po | 6 +-- l10n/ca/core.po | 50 ++++++++++----------- l10n/ca/files.po | 6 +-- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files.po | 6 +-- l10n/cy_GB/core.po | 22 ++++----- l10n/cy_GB/files.po | 6 +-- l10n/da/core.po | 64 +++++++++++++------------- l10n/da/files.po | 6 +-- l10n/de/core.po | 22 ++++----- l10n/de/files.po | 6 +-- l10n/de_DE/core.po | 22 ++++----- l10n/de_DE/files.po | 6 +-- l10n/el/core.po | 62 ++++++++++++------------- l10n/el/files.po | 6 +-- l10n/eo/core.po | 48 ++++++++++---------- l10n/eo/files.po | 6 +-- l10n/es/core.po | 4 +- l10n/es/files.po | 6 +-- l10n/es_AR/core.po | 48 ++++++++++---------- l10n/es_AR/files.po | 6 +-- l10n/et_EE/core.po | 46 +++++++++---------- l10n/et_EE/files.po | 6 +-- l10n/eu/core.po | 50 ++++++++++----------- l10n/eu/files.po | 6 +-- l10n/fa/core.po | 46 +++++++++---------- l10n/fa/files.po | 6 +-- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files.po | 6 +-- l10n/fr/core.po | 70 ++++++++++++++--------------- l10n/fr/files.po | 6 +-- l10n/gl/core.po | 50 ++++++++++----------- l10n/gl/files.po | 6 +-- l10n/he/core.po | 52 ++++++++++----------- l10n/he/files.po | 6 +-- l10n/hr/core.po | 50 ++++++++++----------- l10n/hr/files.po | 6 +-- l10n/hu_HU/core.po | 52 ++++++++++----------- l10n/hu_HU/files.po | 6 +-- l10n/ia/core.po | 44 +++++++++--------- l10n/ia/files.po | 6 +-- l10n/id/core.po | 56 +++++++++++------------ l10n/id/files.po | 6 +-- l10n/is/core.po | 46 +++++++++---------- l10n/is/files.po | 6 +-- l10n/it/core.po | 54 +++++++++++----------- l10n/it/files.po | 6 +-- l10n/ja_JP/core.po | 50 ++++++++++----------- l10n/ja_JP/files.po | 6 +-- l10n/ka_GE/core.po | 22 ++++----- l10n/ka_GE/files.po | 6 +-- l10n/ko/core.po | 52 ++++++++++----------- l10n/ko/files.po | 6 +-- l10n/lb/core.po | 46 +++++++++---------- l10n/lb/files.po | 6 +-- l10n/lt_LT/core.po | 46 +++++++++---------- l10n/lt_LT/files.po | 6 +-- l10n/lv/core.po | 46 +++++++++---------- l10n/lv/files.po | 6 +-- l10n/mk/core.po | 48 ++++++++++---------- l10n/mk/files.po | 6 +-- l10n/ms_MY/core.po | 48 ++++++++++---------- l10n/ms_MY/files.po | 6 +-- l10n/nb_NO/core.po | 56 +++++++++++------------ l10n/nb_NO/files.po | 6 +-- l10n/nl/core.po | 70 ++++++++++++++--------------- l10n/nl/files.po | 6 +-- l10n/oc/core.po | 44 +++++++++--------- l10n/oc/files.po | 6 +-- l10n/pl/core.po | 68 ++++++++++++++-------------- l10n/pl/files.po | 6 +-- l10n/pt_BR/core.po | 66 +++++++++++++-------------- l10n/pt_BR/files.po | 6 +-- l10n/pt_PT/core.po | 58 ++++++++++++------------ l10n/pt_PT/files.po | 6 +-- l10n/ro/core.po | 54 +++++++++++----------- l10n/ro/files.po | 6 +-- l10n/ru/core.po | 66 +++++++++++++-------------- l10n/ru/files.po | 6 +-- l10n/ru_RU/core.po | 48 ++++++++++---------- l10n/ru_RU/files.po | 6 +-- l10n/si_LK/core.po | 48 ++++++++++---------- l10n/si_LK/files.po | 6 +-- l10n/sk_SK/core.po | 56 +++++++++++------------ l10n/sk_SK/files.po | 6 +-- l10n/sl/core.po | 22 ++++----- l10n/sl/files.po | 6 +-- l10n/sq/core.po | 44 +++++++++--------- l10n/sq/files.po | 6 +-- l10n/sr/core.po | 48 ++++++++++---------- l10n/sr/files.po | 6 +-- l10n/sv/core.po | 56 +++++++++++------------ l10n/sv/files.po | 6 +-- l10n/ta_LK/core.po | 46 +++++++++---------- l10n/ta_LK/files.po | 6 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 46 +++++++++---------- l10n/th_TH/files.po | 6 +-- l10n/tr/core.po | 4 +- l10n/tr/files.po | 6 +-- l10n/uk/core.po | 54 +++++++++++----------- l10n/uk/files.po | 6 +-- l10n/vi/core.po | 54 +++++++++++----------- l10n/vi/files.po | 6 +-- l10n/zh_CN.GB2312/core.po | 48 ++++++++++---------- l10n/zh_CN.GB2312/files.po | 6 +-- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 6 +-- l10n/zh_HK/core.po | 46 +++++++++---------- l10n/zh_HK/files.po | 6 +-- l10n/zh_TW/core.po | 22 ++++----- l10n/zh_TW/files.po | 6 +-- 185 files changed, 1519 insertions(+), 1461 deletions(-) diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 41e6a225a2..ac0822d451 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -13,6 +13,7 @@ "Not enough storage available" => "لا يوجد مساحة تخزينية كافية", "Invalid directory." => "مسار غير صحيح.", "Files" => "الملفات", +"Share" => "شارك", "Delete permanently" => "حذف بشكل دائم", "Delete" => "محذوف", "Rename" => "إعادة تسميه", diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index c4bbca36f4..519fbffb76 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -3,6 +3,7 @@ "Failed to write to disk" => "Възникна проблем при запис в диска", "Invalid directory." => "Невалидна директория.", "Files" => "Файлове", +"Share" => "Споделяне", "Delete permanently" => "Изтриване завинаги", "Delete" => "Изтриване", "Rename" => "Преименуване", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 640430716f..e49ac5f262 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -12,6 +12,7 @@ "Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ", "Invalid directory." => "ভুল ডিরেক্টরি", "Files" => "ফাইল", +"Share" => "ভাগাভাগি কর", "Delete" => "মুছে ফেল", "Rename" => "পূনঃনামকরণ", "Pending" => "মুলতুবি", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index d92dbeef67..0f40e66df8 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -13,6 +13,7 @@ "Not enough storage available" => "No hi ha prou espai disponible", "Invalid directory." => "Directori no vàlid.", "Files" => "Fitxers", +"Share" => "Comparteix", "Delete permanently" => "Esborra permanentment", "Delete" => "Suprimeix", "Rename" => "Reanomena", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 66c748fbaa..1d7cdd2718 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Nedostatek dostupného úložného prostoru", "Invalid directory." => "Neplatný adresář", "Files" => "Soubory", +"Share" => "Sdílet", "Delete permanently" => "Trvale odstranit", "Delete" => "Smazat", "Rename" => "Přejmenovat", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index f56d357362..6ec0e7f914 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Dim digon o le storio ar gael", "Invalid directory." => "Cyfeiriadur annilys.", "Files" => "Ffeiliau", +"Share" => "Rhannu", "Delete permanently" => "Dileu'n barhaol", "Delete" => "Dileu", "Rename" => "Ailenwi", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 7c065952ae..da33a3f2f1 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Der er ikke nok plads til rådlighed", "Invalid directory." => "Ugyldig mappe.", "Files" => "Filer", +"Share" => "Del", "Delete permanently" => "Slet permanent", "Delete" => "Slet", "Rename" => "Omdøb", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 34f0233486..6da281dafb 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Nicht genug Speicherplatz verfügbar", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", +"Share" => "Teilen", "Delete permanently" => "Permanent löschen", "Delete" => "Löschen", "Rename" => "Umbenennen", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 8fc1c106d0..977309bfa7 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Nicht genug Speicher vorhanden.", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", +"Share" => "Teilen", "Delete permanently" => "Entgültig löschen", "Delete" => "Löschen", "Rename" => "Umbenennen", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 60d63c4142..c75305ef1a 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος", "Invalid directory." => "Μη έγκυρος φάκελος.", "Files" => "Αρχεία", +"Share" => "Διαμοιρασμός", "Delete permanently" => "Μόνιμη διαγραφή", "Delete" => "Διαγραφή", "Rename" => "Μετονομασία", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 3435f43059..1ef7c9f11d 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -12,6 +12,7 @@ "Failed to write to disk" => "Malsukcesis skribo al disko", "Invalid directory." => "Nevalida dosierujo.", "Files" => "Dosieroj", +"Share" => "Kunhavigi", "Delete" => "Forigi", "Rename" => "Alinomigi", "Pending" => "Traktotaj", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index e231abe429..26e8c049fa 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -13,6 +13,7 @@ "Not enough storage available" => "No hay suficiente espacio disponible", "Invalid directory." => "Directorio invalido.", "Files" => "Archivos", +"Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", "Delete" => "Eliminar", "Rename" => "Renombrar", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 25c2f4ff69..731aa34506 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -13,6 +13,7 @@ "Not enough storage available" => "No hay suficiente capacidad de almacenamiento", "Invalid directory." => "Directorio invalido.", "Files" => "Archivos", +"Share" => "Compartir", "Delete permanently" => "Borrar de manera permanente", "Delete" => "Borrar", "Rename" => "Cambiar nombre", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 64a2f71b27..050c945832 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Saadaval pole piisavalt ruumi", "Invalid directory." => "Vigane kaust.", "Files" => "Failid", +"Share" => "Jaga", "Delete permanently" => "Kustuta jäädavalt", "Delete" => "Kustuta", "Rename" => "ümber", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 8c244babf0..ebffc69f72 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Ez dago behar aina leku erabilgarri,", "Invalid directory." => "Baliogabeko karpeta.", "Files" => "Fitxategiak", +"Share" => "Elkarbanatu", "Delete permanently" => "Ezabatu betirako", "Delete" => "Ezabatu", "Rename" => "Berrizendatu", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 13ef465199..5effe83d9f 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -13,6 +13,7 @@ "Not enough storage available" => "فضای کافی در دسترس نیست", "Invalid directory." => "فهرست راهنما نامعتبر می باشد.", "Files" => "فایل ها", +"Share" => "اشتراک‌گذاری", "Delete permanently" => "حذف قطعی", "Delete" => "پاک کردن", "Rename" => "تغییرنام", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index b797273d51..67f704b6d7 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -12,6 +12,7 @@ "Not enough storage available" => "Tallennustilaa ei ole riittävästi käytettävissä", "Invalid directory." => "Virheellinen kansio.", "Files" => "Tiedostot", +"Share" => "Jaa", "Delete permanently" => "Poista pysyvästi", "Delete" => "Poista", "Rename" => "Nimeä uudelleen", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 093a0b891c..d92a9e1511 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Plus assez d'espace de stockage disponible", "Invalid directory." => "Dossier invalide.", "Files" => "Fichiers", +"Share" => "Partager", "Delete permanently" => "Supprimer de façon définitive", "Delete" => "Supprimer", "Rename" => "Renommer", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 14992f5838..91fd233945 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Non hai espazo de almacenamento abondo", "Invalid directory." => "O directorio é incorrecto.", "Files" => "Ficheiros", +"Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", "Delete" => "Eliminar", "Rename" => "Renomear", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 36ba7cc5de..a404a8f006 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -8,6 +8,7 @@ "Missing a temporary folder" => "תיקייה זמנית חסרה", "Failed to write to disk" => "הכתיבה לכונן נכשלה", "Files" => "קבצים", +"Share" => "שתף", "Delete permanently" => "מחק לצמיתות", "Delete" => "מחיקה", "Rename" => "שינוי שם", diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index a6b83b3d67..30af812d43 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -6,6 +6,7 @@ "Missing a temporary folder" => "Nedostaje privremena mapa", "Failed to write to disk" => "Neuspjelo pisanje na disk", "Files" => "Datoteke", +"Share" => "Podijeli", "Delete" => "Briši", "Rename" => "Promjeni ime", "Pending" => "U tijeku", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 103523b65f..ffbe0fd9c5 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Nincs elég szabad hely.", "Invalid directory." => "Érvénytelen mappa.", "Files" => "Fájlok", +"Share" => "Megosztás", "Delete permanently" => "Végleges törlés", "Delete" => "Törlés", "Rename" => "Átnevezés", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index b3233cc37d..8c47b2011a 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -3,6 +3,7 @@ "No file was uploaded" => "Nulle file esseva incargate", "Missing a temporary folder" => "Manca un dossier temporari", "Files" => "Files", +"Share" => "Compartir", "Delete" => "Deler", "Name" => "Nomine", "Size" => "Dimension", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 3894ce0de9..1ec8713d50 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Ruang penyimpanan tidak mencukupi", "Invalid directory." => "Direktori tidak valid.", "Files" => "Berkas", +"Share" => "Bagikan", "Delete permanently" => "Hapus secara permanen", "Delete" => "Hapus", "Rename" => "Ubah nama", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index c7c8e9ccdb..f0a4aa81ef 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -12,6 +12,7 @@ "Failed to write to disk" => "Tókst ekki að skrifa á disk", "Invalid directory." => "Ógild mappa.", "Files" => "Skrár", +"Share" => "Deila", "Delete" => "Eyða", "Rename" => "Endurskýra", "Pending" => "Bíður", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 20819e2564..d8cdd7dfac 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Spazio di archiviazione insufficiente", "Invalid directory." => "Cartella non valida.", "Files" => "File", +"Share" => "Condividi", "Delete permanently" => "Elimina definitivamente", "Delete" => "Elimina", "Rename" => "Rinomina", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 402a9f33b3..503511804e 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -13,6 +13,7 @@ "Not enough storage available" => "ストレージに十分な空き容量がありません", "Invalid directory." => "無効なディレクトリです。", "Files" => "ファイル", +"Share" => "共有", "Delete permanently" => "完全に削除する", "Delete" => "削除", "Rename" => "名前の変更", diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index 6ea75a2ea9..1e645dfb00 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -13,6 +13,7 @@ "Not enough storage available" => "საცავში საკმარისი ადგილი არ არის", "Invalid directory." => "დაუშვებელი დირექტორია.", "Files" => "ფაილები", +"Share" => "გაზიარება", "Delete permanently" => "სრულად წაშლა", "Delete" => "წაშლა", "Rename" => "გადარქმევა", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 88378bb486..48078908e8 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -12,6 +12,7 @@ "Failed to write to disk" => "디스크에 쓰지 못했습니다", "Invalid directory." => "올바르지 않은 디렉터리입니다.", "Files" => "파일", +"Share" => "공유", "Delete" => "삭제", "Rename" => "이름 바꾸기", "Pending" => "보류 중", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 6533a12308..6c70369178 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -6,6 +6,7 @@ "Missing a temporary folder" => "Et feelt en temporären Dossier", "Failed to write to disk" => "Konnt net op den Disk schreiwen", "Files" => "Dateien", +"Share" => "Deelen", "Delete" => "Läschen", "replace" => "ersetzen", "cancel" => "ofbriechen", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 750500a3d5..b53a390db6 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -6,6 +6,7 @@ "Missing a temporary folder" => "Nėra laikinojo katalogo", "Failed to write to disk" => "Nepavyko įrašyti į diską", "Files" => "Failai", +"Share" => "Dalintis", "Delete" => "Ištrinti", "Rename" => "Pervadinti", "Pending" => "Laukiantis", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 1292514547..c5bf938f73 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Nav pietiekami daudz vietas", "Invalid directory." => "Nederīga direktorija.", "Files" => "Datnes", +"Share" => "Dalīties", "Delete permanently" => "Dzēst pavisam", "Delete" => "Dzēst", "Rename" => "Pārsaukt", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 78fed25cf9..50aadc7e1f 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -8,6 +8,7 @@ "Missing a temporary folder" => "Не постои привремена папка", "Failed to write to disk" => "Неуспеав да запишам на диск", "Files" => "Датотеки", +"Share" => "Сподели", "Delete" => "Избриши", "Rename" => "Преименувај", "Pending" => "Чека", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index a390288b36..9ec795d7c5 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Folder sementara hilang", "Failed to write to disk" => "Gagal untuk disimpan", "Files" => "fail", +"Share" => "Kongsi", "Delete" => "Padam", "Pending" => "Dalam proses", "replace" => "ganti", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 54042c9124..921eacdc72 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Mangler en midlertidig mappe", "Failed to write to disk" => "Klarte ikke å skrive til disk", "Files" => "Filer", +"Share" => "Del", "Delete permanently" => "Slett permanent", "Delete" => "Slett", "Rename" => "Omdøp", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 38b55d34d9..8b366af83a 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Niet genoeg opslagruimte beschikbaar", "Invalid directory." => "Ongeldige directory.", "Files" => "Bestanden", +"Share" => "Delen", "Delete permanently" => "Verwijder definitief", "Delete" => "Verwijder", "Rename" => "Hernoem", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index b1ef621658..70a41fc17f 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -6,6 +6,7 @@ "Missing a temporary folder" => "Un dorsièr temporari manca", "Failed to write to disk" => "L'escriptura sul disc a fracassat", "Files" => "Fichièrs", +"Share" => "Parteja", "Delete" => "Escafa", "Rename" => "Torna nomenar", "Pending" => "Al esperar", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index e9a78e2f44..cc35d498ca 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Za mało dostępnego miejsca", "Invalid directory." => "Zła ścieżka.", "Files" => "Pliki", +"Share" => "Udostępnij", "Delete permanently" => "Trwale usuń", "Delete" => "Usuń", "Rename" => "Zmień nazwę", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index ad8f37c24f..ad5a8d138e 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Espaço de armazenamento insuficiente", "Invalid directory." => "Diretório inválido.", "Files" => "Arquivos", +"Share" => "Compartilhar", "Delete permanently" => "Excluir permanentemente", "Delete" => "Excluir", "Rename" => "Renomear", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index c06108cf2b..fea77e86e7 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Não há espaço suficiente em disco", "Invalid directory." => "Directório Inválido", "Files" => "Ficheiros", +"Share" => "Partilhar", "Delete permanently" => "Eliminar permanentemente", "Delete" => "Apagar", "Rename" => "Renomear", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index e3cab80fbc..2c8da6ae6e 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -12,6 +12,7 @@ "Failed to write to disk" => "Eroare la scriere pe disc", "Invalid directory." => "Director invalid.", "Files" => "Fișiere", +"Share" => "Partajează", "Delete" => "Șterge", "Rename" => "Redenumire", "Pending" => "În așteptare", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 37f2e083c4..89a164a35f 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Недостаточно доступного места в хранилище", "Invalid directory." => "Неправильный каталог.", "Files" => "Файлы", +"Share" => "Открыть доступ", "Delete permanently" => "Удалено навсегда", "Delete" => "Удалить", "Rename" => "Переименовать", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index a7c6c83fde..400a0dc8de 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Недостаточно места в хранилище", "Invalid directory." => "Неверный каталог.", "Files" => "Файлы", +"Share" => "Сделать общим", "Delete permanently" => "Удалить навсегда", "Delete" => "Удалить", "Rename" => "Переименовать", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index dfcca6f689..c1e5805031 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "තාවකාලික ෆොල්ඩරයක් සොයාගත නොහැක", "Failed to write to disk" => "තැටිගත කිරීම අසාර්ථකයි", "Files" => "ගොනු", +"Share" => "බෙදා හදා ගන්න", "Delete" => "මකන්න", "Rename" => "නැවත නම් කරන්න", "replace" => "ප්‍රතිස්ථාපනය කරන්න", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index ee89a4c7d6..909c3b2ac2 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Nedostatok dostupného úložného priestoru", "Invalid directory." => "Neplatný priečinok", "Files" => "Súbory", +"Share" => "Zdieľať", "Delete permanently" => "Zmazať trvalo", "Delete" => "Odstrániť", "Rename" => "Premenovať", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 65d463e13d..a43c8dc9de 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Na voljo ni dovolj prostora", "Invalid directory." => "Neveljavna mapa.", "Files" => "Datoteke", +"Share" => "Souporaba", "Delete permanently" => "Izbriši trajno", "Delete" => "Izbriši", "Rename" => "Preimenuj", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index 57c21ba002..fe3ae9e7a9 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Nuk ka mbetur hapësirë memorizimi e mjaftueshme", "Invalid directory." => "Dosje e pavlefshme.", "Files" => "Skedarët", +"Share" => "Nda", "Delete permanently" => "Elimino përfundimisht", "Delete" => "Elimino", "Rename" => "Riemërto", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 50d587ebb2..5d32cdd9fb 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Нема довољно простора", "Invalid directory." => "неисправна фасцикла.", "Files" => "Датотеке", +"Share" => "Дели", "Delete permanently" => "Обриши за стално", "Delete" => "Обриши", "Rename" => "Преименуј", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 125788ad13..020df1776e 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Inte tillräckligt med lagringsutrymme tillgängligt", "Invalid directory." => "Felaktig mapp.", "Files" => "Filer", +"Share" => "Dela", "Delete permanently" => "Radera permanent", "Delete" => "Radera", "Rename" => "Byt namn", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index b88379043d..7b90dd8e11 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை", "Failed to write to disk" => "வட்டில் எழுத முடியவில்லை", "Files" => "கோப்புகள்", +"Share" => "பகிர்வு", "Delete" => "அழிக்க", "Rename" => "பெயர்மாற்றம்", "Pending" => "நிலுவையிலுள்ள", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 0e7d32bf12..a1f9f84f1b 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -13,6 +13,7 @@ "Not enough storage available" => "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน", "Invalid directory." => "ไดเร็กทอรี่ไม่ถูกต้อง", "Files" => "ไฟล์", +"Share" => "แชร์", "Delete" => "ลบ", "Rename" => "เปลี่ยนชื่อ", "Pending" => "อยู่ระหว่างดำเนินการ", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 84da59cee0..a4206d86e5 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Yeterli disk alanı yok", "Invalid directory." => "Geçersiz dizin.", "Files" => "Dosyalar", +"Share" => "Paylaş", "Delete permanently" => "Kalıcı olarak sil", "Delete" => "Sil", "Rename" => "İsim değiştir.", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 65b4ec1433..b796c6413d 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Місця більше немає", "Invalid directory." => "Невірний каталог.", "Files" => "Файли", +"Share" => "Поділитися", "Delete permanently" => "Видалити назавжди", "Delete" => "Видалити", "Rename" => "Перейменувати", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 73cf154492..e5a4035791 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -13,6 +13,7 @@ "Not enough storage available" => "Không đủ không gian lưu trữ", "Invalid directory." => "Thư mục không hợp lệ", "Files" => "Tập tin", +"Share" => "Chia sẻ", "Delete permanently" => "Xóa vĩnh vễn", "Delete" => "Xóa", "Rename" => "Sửa tên", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 33e21e544c..0a2c1ea00d 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "丢失了一个临时文件夹", "Failed to write to disk" => "写磁盘失败", "Files" => "文件", +"Share" => "分享", "Delete" => "删除", "Rename" => "重命名", "Pending" => "Pending", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 9cd9eb893d..2f9e434993 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -13,6 +13,7 @@ "Not enough storage available" => "没有足够的存储空间", "Invalid directory." => "无效文件夹。", "Files" => "文件", +"Share" => "分享", "Delete permanently" => "永久删除", "Delete" => "删除", "Rename" => "重命名", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index 063acef5f0..caafc74b85 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -1,5 +1,6 @@ "文件", +"Share" => "分享", "Delete" => "刪除", "Error" => "錯誤", "Name" => "名稱", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index c61cf0e222..5cc7e358f0 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -13,6 +13,7 @@ "Not enough storage available" => "儲存空間不足", "Invalid directory." => "無效的資料夾。", "Files" => "檔案", +"Share" => "分享", "Delete permanently" => "永久刪除", "Delete" => "刪除", "Rename" => "重新命名", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 487be69300..bf35eef64f 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmad Matalqah , 2013. -# , 2012. -# , 2013. -# , 2011, 2012. +# Matalqah , 2013 +# aboodilankaboot, 2012 +# blackcoder , 2013 +# blackcoder , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -297,7 +297,7 @@ msgstr "شارك مع رابط" msgid "Password protect" msgstr "حماية كلمة السر" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "كلمة السر" @@ -413,7 +413,7 @@ msgid "Request failed!" msgstr "فشل الطلب" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "إسم المستخدم" @@ -523,37 +523,37 @@ msgstr "خيارات متقدمة" msgid "Data folder" msgstr "مجلد المعلومات" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "أسس قاعدة البيانات" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "سيتم استخدمه" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "مساحة جدول قاعدة البيانات" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "انهاء التعديلات" @@ -565,33 +565,33 @@ msgstr "خدمات الوب تحت تصرفك" msgid "Log out" msgstr "الخروج" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "تم رفض تسجيل الدخول التلقائي!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "قد يكون حسابك في خطر إن لم تقم بإعادة تعيين كلمة السر حديثاً" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "الرجاء إعادة تعيين كلمة السر لتأمين حسابك." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "هل نسيت كلمة السر؟" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "تذكر" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "أدخل" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "اسماء دخول بديلة" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 4e3be9dc4a..818594d0e4 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "الملفات" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "شارك" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 8de9ebda54..cde47dc667 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:58+0200\n" -"PO-Revision-Date: 2013-04-23 09:50+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 2af28b9ff3..1ed196c777 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "Файлове" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Споделяне" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 47cccfcd63..9499d31da5 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Shubhra Paul , 2013. +# Shubhra Paul , 2013 +# Shubhra Paul , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "লিংকের সাথে ভাগাভাগি কর" msgid "Password protect" msgstr "কূটশব্দ সুরক্ষিত" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "কূটশব্দ" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "অনুরোধ ব্যর্থ !" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "ব্যবহারকারী" @@ -521,37 +521,37 @@ msgstr "সুচারু" msgid "Data folder" msgstr "ডাটা ফোল্ডার " -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "ডাটাবেচ কনফিগার করুন" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "ব্যবহৃত হবে" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "ডাটাবেজ ব্যবহারকারী" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "ডাটাবেজ কূটশব্দ" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "ডাটাবেজের নাম" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "ডাটাবেজ টেবলস্পেস" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "ডাটাবেজ হোস্ট" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "সেটআপ সুসম্পন্ন কর" @@ -563,33 +563,33 @@ msgstr "ওয়েব সার্ভিসের নিয়ন্ত্রণ আ msgid "Log out" msgstr "প্রস্থান" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "কূটশব্দ হারিয়েছেন?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "মনে রাখ" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "প্রবেশ" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index ce584062db..c14f869cbb 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "ফাইল" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "ভাগাভাগি কর" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index a619724318..43fb6ea819 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2013. -# , 2011-2013. -# , 2013. +# jmontane , 2012 +# rogerc , 2013 +# rogerc , 2011-2013 +# aseques , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -297,7 +297,7 @@ msgstr "Comparteix amb enllaç" msgid "Password protect" msgstr "Protegir amb contrasenya" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Contrasenya" @@ -413,7 +413,7 @@ msgid "Request failed!" msgstr "El requeriment ha fallat!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nom d'usuari" @@ -523,37 +523,37 @@ msgstr "Avançat" msgid "Data folder" msgstr "Carpeta de dades" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configura la base de dades" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "s'usarà" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Acaba la configuració" @@ -565,33 +565,33 @@ msgstr "controleu els vostres serveis web" msgid "Log out" msgstr "Surt" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "L'ha rebutjat l'acceditació automàtica!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se no heu canviat la contrasenya recentment el vostre compte pot estar compromès!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "recorda'm" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Inici de sessió" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Acreditacions alternatives" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 3820c9d49c..945c206be5 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "Fitxers" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Comparteix" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 28cd00a94b..b875d5d708 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:20+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: cernydav \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 35fc98f58f..431713fa36 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "Soubory" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Sdílet" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 70dc34cea5..50d8ae572f 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-17 14:10+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -294,7 +294,7 @@ msgstr "Dolen ar gyfer rhannu" msgid "Password protect" msgstr "Diogelu cyfrinair" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Cyfrinair" @@ -410,7 +410,7 @@ msgid "Request failed!" msgstr "Methodd y cais!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Enw defnyddiwr" @@ -562,33 +562,33 @@ msgstr "gwasanaethau gwe a reolir gennych" msgid "Log out" msgstr "Allgofnodi" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Gwrthodwyd mewngofnodi awtomatig!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif fod yn anniogel!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Wedi colli'ch cyfrinair?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "cofio" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Mewngofnodi" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Mewngofnodiadau Amgen" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 9c35415365..dc4994e495 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "Ffeiliau" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Rhannu" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/da/core.po b/l10n/da/core.po index 3b03eb966d..be0d00c663 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -3,23 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bawl , 2013. -# , 2012. -# Frederik Lassen , 2013. -# , 2011, 2012. -# Morten Juhl-Johansen Zölde-Fejér , 2011-2013. -# Ole Holm Frandsen , 2012. -# Pascal d'Hermilly , 2011. -# Rasmus Paasch , 2013. -# , 2012. -# Thomas Tanghus <>, 2012. -# Thomas Tanghus , 2012. +# Bawl , 2013 +# cronner , 2012 +# Frederik Lassen , 2013 +# mikkel_ilu , 2011, 2012 +# Morten Juhl-Johansen Zölde-Fejér , 2011-2013 +# Ole Holm Frandsen , 2012 +# Pascal d'Hermilly , 2011 +# rpaasch , 2013 +# muunsim , 2012 +# Thomas Tanghus , 2012 +# Thomas Tanghus , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -304,7 +304,7 @@ msgstr "Del med link" msgid "Password protect" msgstr "Beskyt med adgangskode" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Kodeord" @@ -420,7 +420,7 @@ msgid "Request failed!" msgstr "Anmodningen mislykkedes!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Brugernavn" @@ -530,37 +530,37 @@ msgstr "Avanceret" msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "vil blive brugt" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Afslut opsætning" @@ -572,33 +572,33 @@ msgstr "Webtjenester under din kontrol" msgid "Log out" msgstr "Log ud" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatisk login afvist!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Hvis du ikke har ændret din adgangskode for nylig, har nogen muligvis tiltvunget sig adgang til din konto!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Skift adgangskode for at sikre din konto igen." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "husk" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Log ind" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternative logins" diff --git a/l10n/da/files.po b/l10n/da/files.po index 180b7728d4..5b5a147bbe 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "Filer" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Del" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/de/core.po b/l10n/de/core.po index ff7be03630..eb400afa69 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-17 12:50+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: Lukas Reschke \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -311,7 +311,7 @@ msgstr "Über einen Link freigegeben" msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Passwort" @@ -427,7 +427,7 @@ msgid "Request failed!" msgstr "Die Anfrage schlug fehl!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Benutzername" @@ -579,33 +579,33 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "Log out" msgstr "Abmelden" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatischer Login zurückgewiesen!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "merken" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternative Logins" diff --git a/l10n/de/files.po b/l10n/de/files.po index 605d246737..db82c1ba22 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -29,8 +29,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -102,7 +102,7 @@ msgstr "Dateien" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Teilen" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 666f0eeb26..ac26cb73ef 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -29,8 +29,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-17 12:50+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: Lukas Reschke \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "Über einen Link teilen" msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Passwort" @@ -431,7 +431,7 @@ msgid "Request failed!" msgstr "Die Anfrage schlug fehl!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Benutzername" @@ -583,33 +583,33 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "Log out" msgstr "Abmelden" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatische Anmeldung verweigert." -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "merken" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternative Logins" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index bb50bf6b99..c1ca450f0e 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -34,8 +34,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -107,7 +107,7 @@ msgstr "Dateien" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Teilen" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/el/core.po b/l10n/el/core.po index 17bdcf4ca7..390ca2503d 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -3,22 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# axil Pι , 2012. -# Dimitris M. , 2012-2013. -# Efstathios Iosifidis , 2012. -# Efstathios Iosifidis , 2013. -# Efstathios Iosifidis , 2012. -# Marios Bekatoros <>, 2012. -# , 2011. -# Petros Kyladitis , 2011-2012. -# , 2013. -# Wasilis Mandratzis , 2013. +# axil Pι , 2012 +# Dimitris M. , 2012-2013 +# Efstathios Iosifidis , 2012 +# Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2012 +# Marios Bekatoros <>, 2012 +# Petros Kyladitis , 2011 +# Petros Kyladitis , 2011-2012 +# xneo1 , 2013 +# Wasilis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -303,7 +303,7 @@ msgstr "Διαμοιρασμός με σύνδεσμο" msgid "Password protect" msgstr "Προστασία συνθηματικού" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Συνθηματικό" @@ -419,7 +419,7 @@ msgid "Request failed!" msgstr "Η αίτηση απέτυχε!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Όνομα Χρήστη" @@ -529,37 +529,37 @@ msgstr "Για προχωρημένους" msgid "Data folder" msgstr "Φάκελος δεδομένων" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Ρύθμιση της βάσης δεδομένων" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "θα χρησιμοποιηθούν" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομένων" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" @@ -571,33 +571,33 @@ msgstr "Υπηρεσίες web υπό τον έλεγχό σας" msgid "Log out" msgstr "Αποσύνδεση" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Απορρίφθηκε η αυτόματη σύνδεση!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Εάν δεν αλλάξατε το συνθηματικό σας προσφάτως, ο λογαριασμός μπορεί να έχει διαρρεύσει!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Παρακαλώ αλλάξτε το συνθηματικό σας για να ασφαλίσετε πάλι τον λογαριασμό σας." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Ξεχάσατε το συνθηματικό σας;" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "απομνημόνευση" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Είσοδος" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Εναλλακτικές Συνδέσεις" diff --git a/l10n/el/files.po b/l10n/el/files.po index c580f974d5..bd87eb14e7 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "Αρχεία" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Διαμοιρασμός" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index fd104b957c..78012968ff 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2012. -# Michael Moroni , 2012. -# , 2011, 2012. +# Mariano , 2012 +# Michael Moroni , 2012 +# Mariano , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -296,7 +296,7 @@ msgstr "Kunhavigi per ligilo" msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Pasvorto" @@ -412,7 +412,7 @@ msgid "Request failed!" msgstr "Peto malsukcesis!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Uzantonomo" @@ -522,37 +522,37 @@ msgstr "Progresinta" msgid "Data folder" msgstr "Datuma dosierujo" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Agordi la datumbazon" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "estos uzata" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Fini la instalon" @@ -564,33 +564,33 @@ msgstr "TTT-servoj sub via kontrolo" msgid "Log out" msgstr "Elsaluti" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "memori" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Ensaluti" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index ed1fcd6630..750da5b5f1 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "Dosieroj" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Kunhavigi" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/es/core.po b/l10n/es/core.po index 79e7618ee7..3fbfff5190 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" -"PO-Revision-Date: 2013-04-22 18:40+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index c424ef4e47..3920f75ac5 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "Archivos" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Compartir" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 7a134d06ce..9a213ae254 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# CJTess , 2013. -# , 2012-2013. -# , 2012. +# cjtess , 2013 +# cjtess , 2012-2013 +# Javierkaiser , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -296,7 +296,7 @@ msgstr "Compartir con link" msgid "Password protect" msgstr "Proteger con contraseña " -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Contraseña" @@ -412,7 +412,7 @@ msgid "Request failed!" msgstr "Error en el pedido!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nombre de usuario" @@ -522,37 +522,37 @@ msgstr "Avanzado" msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Completar la instalación" @@ -564,33 +564,33 @@ msgstr "servicios web sobre los que tenés control" msgid "Log out" msgstr "Cerrar la sesión" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "¡El inicio de sesión automático fue rechazado!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "¿Perdiste tu contraseña?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "recordame" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Nombre alternativos de usuarios" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 2f839afbf4..f2d9d26d03 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "Archivos" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Compartir" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 73d7534b61..e5dc00dc00 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pisike Sipelgas , 2013. -# Rivo Zängov , 2011-2012. +# pisike.sipelgas , 2013 +# Rivo Zängov , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "Jaga lingiga" msgid "Password protect" msgstr "Parooliga kaitstud" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Parool" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "Päring ebaõnnestus!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Kasutajanimi" @@ -521,37 +521,37 @@ msgstr "Lisavalikud" msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "kasutatakse" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Lõpeta seadistamine" @@ -563,33 +563,33 @@ msgstr "veebiteenused sinu kontrolli all" msgid "Log out" msgstr "Logi välja" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automaatne sisselogimine lükati tagasi!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Kui sa ei muutnud oma parooli hiljut, siis võib su kasutajakonto olla ohustatud!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "pea meeles" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Logi sisse" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternatiivsed meldimised" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index bd785634e2..53901468b8 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "Failid" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Jaga" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 6fa4ebaaf0..8ea3e02d5e 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Asier Urio Larrea , 2011. -# Piarres Beobide , 2012. +# asieriko , 2013 +# asieriko , 2012 +# asieriko , 2011 +# Piarres Beobide , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -297,7 +297,7 @@ msgstr "Elkarbanatu lotura batekin" msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Pasahitza" @@ -413,7 +413,7 @@ msgid "Request failed!" msgstr "Eskariak huts egin du!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Erabiltzaile izena" @@ -523,37 +523,37 @@ msgstr "Aurreratua" msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "erabiliko da" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Bukatu konfigurazioa" @@ -565,33 +565,33 @@ msgstr "web zerbitzuak zure kontrolpean" msgid "Log out" msgstr "Saioa bukatu" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Saio hasiera automatikoa ez onartuta!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan egon daiteke!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "gogoratu" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Hasi saioa" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Beste erabiltzaile izenak" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 7ce4264ce9..7dda9e5fc7 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "Fitxategiak" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Elkarbanatu" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 9178afa906..c1accd9610 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hossein nag , 2012. -# mahdi Kereshteh , 2013. +# Hossein nag , 2012 +# miki_mika1362 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "به اشتراک گذاشتن با پیوند" msgid "Password protect" msgstr "نگهداری کردن رمز عبور" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "گذرواژه" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "درخواست رد شده است !" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "شناسه" @@ -521,37 +521,37 @@ msgstr "حرفه ای" msgid "Data folder" msgstr "پوشه اطلاعاتی" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "پایگاه داده برنامه ریزی شدند" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "استفاده خواهد شد" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "جدول پایگاه داده" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "اتمام نصب" @@ -563,33 +563,33 @@ msgstr "سرویس وب تحت کنترل شما" msgid "Log out" msgstr "خروج" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "ورود به سیستم اتوماتیک ردشد!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "اگر شما اخیرا رمزعبور را تغییر نداده اید، حساب شما در معرض خطر می باشد !" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "لطفا رمز عبور خود را تغییر دهید تا مجددا حساب شما در امان باشد." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "ورود" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "ورود متناوب" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index d4cb2ff72a..4c651b2e42 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "فایل ها" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "اشتراک‌گذاری" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 65526698a2..4094a46291 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 05:10+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 8a43abc930..b551facaf9 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "Tiedostot" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Jaa" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 07437d6613..f7f10c32bd 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,26 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2012-2013. -# David Basquin , 2013. -# , 2013. -# Fabian Lemaître , 2013. -# , 2012. -# , 2012. -# Guillaume Paumier , 2012-2013. -# , 2012. -# Nahir Mohamed , 2012. -# , 2012. -# , 2012. -# Robert Di Rosa <>, 2013. -# , 2011. -# Romain DEP. , 2012-2013. +# Christophe Lherieau , 2012-2013 +# dbasquin , 2013 +# dbasquin , 2013 +# ptit_boogy , 2013 +# fkhannouf , 2012 +# Florentin Le Moal , 2012 +# Guillaume Paumier , 2012-2013 +# mishka , 2012 +# Nahir Mohamed , 2012 +# Paul McFly , 2012 +# ouafnico , 2012 +# Robert Di Rosa <>, 2013 +# Romain DEP. , 2011 +# Romain DEP. , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -307,7 +307,7 @@ msgstr "Partager via lien" msgid "Password protect" msgstr "Protéger par un mot de passe" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Mot de passe" @@ -423,7 +423,7 @@ msgid "Request failed!" msgstr "La requête a échoué !" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nom d'utilisateur" @@ -533,37 +533,37 @@ msgstr "Avancé" msgid "Data folder" msgstr "Répertoire des données" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configurer la base de données" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "sera utilisé" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Terminer l'installation" @@ -575,33 +575,33 @@ msgstr "services web sous votre contrôle" msgid "Log out" msgstr "Se déconnecter" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Connexion automatique rejetée !" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Si vous n'avez pas changé votre mot de passe récemment, votre compte risque d'être compromis !" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Connexion" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Logins alternatifs" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index d776254f28..029f913ba9 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -97,7 +97,7 @@ msgstr "Fichiers" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Partager" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 2424c7626c..8e3fba77f9 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# antiparvos , 2012. -# , 2013. -# , 2012. -# Xosé M. Lamas , 2012-2013. +# antiparvos , 2012 +# mbouzada , 2013 +# mbouzada , 2012 +# Xosé M. Lamas , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -297,7 +297,7 @@ msgstr "Compartir coa ligazón" msgid "Password protect" msgstr "Protexido con contrasinais" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Contrasinal" @@ -413,7 +413,7 @@ msgid "Request failed!" msgstr "Non foi posíbel facer a petición" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nome de usuario" @@ -523,37 +523,37 @@ msgstr "Avanzado" msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "vai ser utilizado" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Rematar a configuración" @@ -565,33 +565,33 @@ msgstr "servizos web baixo o seu control" msgid "Log out" msgstr "Desconectar" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Rexeitouse a entrada automática" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "lembrar" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Conectar" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Accesos alternativos" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index c7ff5f644c..1139ed1f0f 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "Ficheiros" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Compartir" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/he/core.po b/l10n/he/core.po index 742b5ad873..2b44eac597 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dovix Dovix , 2012. -# Gilad Naaman , 2013. -# , 2012. -# , 2011. -# Yaron Shahrabani , 2011-2012. +# Dovix Dovix , 2012 +# Gilad Naaman , 2013 +# idop , 2012 +# Tomer Cohen , 2011 +# Yaron Shahrabani , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -298,7 +298,7 @@ msgstr "שיתוף עם קישור" msgid "Password protect" msgstr "הגנה בססמה" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "ססמה" @@ -414,7 +414,7 @@ msgid "Request failed!" msgstr "הבקשה נכשלה!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "שם משתמש" @@ -524,37 +524,37 @@ msgstr "מתקדם" msgid "Data folder" msgstr "תיקיית נתונים" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "הגדרת מסד הנתונים" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "ינוצלו" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "שם משתמש במסד הנתונים" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "ססמת מסד הנתונים" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "שם מסד הנתונים" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "מרחב הכתובות של מסד הנתונים" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "שרת בסיס נתונים" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "סיום התקנה" @@ -566,33 +566,33 @@ msgstr "שירותי רשת בשליטתך" msgid "Log out" msgstr "התנתקות" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "בקשת הכניסה האוטומטית נדחתה!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "אם לא שינית את ססמתך לאחרונה, יתכן שחשבונך נפגע!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "נא לשנות את הססמה שלך כדי לאבטח את חשבונך מחדש." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "שכחת את ססמתך?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "כניסה" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "כניסות אלטרנטיביות" diff --git a/l10n/he/files.po b/l10n/he/files.po index 345ef6e6eb..d89bd34049 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "קבצים" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "שתף" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 6aa351f1a2..1061fc3276 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Davor Kustec , 2011, 2012. -# Domagoj Delimar , 2012. -# , 2012. -# Thomas Silađi , 2011, 2012. +# Davor Kustec , 2011, 2012 +# Domagoj Delimar , 2012 +# fposavec , 2012 +# Thomas Silađi , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -297,7 +297,7 @@ msgstr "Djeli preko link-a" msgid "Password protect" msgstr "Zaštiti lozinkom" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Lozinka" @@ -413,7 +413,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Korisničko ime" @@ -523,37 +523,37 @@ msgstr "Dodatno" msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "će se koristiti" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Završi postavljanje" @@ -565,33 +565,33 @@ msgstr "web usluge pod vašom kontrolom" msgid "Log out" msgstr "Odjava" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Prijava" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 0a4edf8fb6..c7ac4be637 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "Datoteke" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Podijeli" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index be7a469931..f8d6e14a06 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Toth , 2012. -# Laszlo Tornoci , 2013. -# , 2011. -# Peter Borsa , 2012. -# Tamas Nagy , 2013. +# Adam Toth , 2012 +# Laszlo Tornoci , 2013 +# Tamas Nagy , 2011 +# Peter Borsa , 2012 +# Tamas Nagy , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -298,7 +298,7 @@ msgstr "Link megadásával osztom meg" msgid "Password protect" msgstr "Jelszóval is védem" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Jelszó" @@ -414,7 +414,7 @@ msgid "Request failed!" msgstr "Nem sikerült a kérést teljesíteni!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Felhasználónév" @@ -524,37 +524,37 @@ msgstr "Haladó" msgid "Data folder" msgstr "Adatkönyvtár" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Adatbázis konfigurálása" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "adatbázist fogunk használni" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Az adatbázis neve" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Az adatbázis táblázattér (tablespace)" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "A beállítások befejezése" @@ -566,33 +566,33 @@ msgstr "webszolgáltatások saját kézben" msgid "Log out" msgstr "Kilépés" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Az automatikus bejelentkezés sikertelen!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy idegenek jutottak be a rendszerbe az Ön nevében!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "A biztonsága érdekében változtassa meg a jelszavát!" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Elfelejtette a jelszavát?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "emlékezzen" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Bejelentkezés" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternatív bejelentkezés" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index c2d29a28f4..2a0e531f91 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "Fájlok" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Megosztás" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 234d6e2961..e10d50215c 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Emilio Sepúlveda , 2011. +# Emilio Sepúlveda , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -294,7 +294,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Contrasigno" @@ -410,7 +410,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nomine de usator" @@ -520,37 +520,37 @@ msgstr "Avantiate" msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configurar le base de datos" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "essera usate" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" @@ -562,33 +562,33 @@ msgstr "servicios web sub tu controlo" msgid "Log out" msgstr "Clauder le session" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "memora" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Aperir session" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index d82a372bae..649ffec927 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "Files" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Compartir" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/id/core.po b/l10n/id/core.po index 0a94ad4da8..4ef5eb6b2c 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Muhammad Fauzan , 2012. -# Muhammad Panji , 2012. -# Muhammad Radifar , 2011. -# , 2013. -# Widya Walesa , 2013. +# evanlimanto , 2013 +# elmakong , 2012 +# Muhammad Fauzan , 2012 +# Muhammad Panji , 2012 +# Muhammad Radifar , 2011 +# rodin , 2013 +# w41l , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -300,7 +300,7 @@ msgstr "Bagikan lewat tautan" msgid "Password protect" msgstr "Lindungi dengan sandi" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Sandi" @@ -416,7 +416,7 @@ msgid "Request failed!" msgstr "Permintaan gagal!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nama Pengguna" @@ -526,37 +526,37 @@ msgstr "Tingkat Lanjut" msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Konfigurasikan basis data" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Pengguna basis data" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Sandi basis data" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nama basis data" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tablespace basis data" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Host basis data" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Selesaikan instalasi" @@ -568,33 +568,33 @@ msgstr "layanan web dalam kontrol Anda" msgid "Log out" msgstr "Keluar" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Masuk otomatis ditolak!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin dalam bahaya!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Lupa sandi?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "selalu masuk" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Masuk" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Cara Alternatif untuk Masuk" diff --git a/l10n/id/files.po b/l10n/id/files.po index a1c35c32cf..94da4a3fcf 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "Berkas" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Bagikan" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/is/core.po b/l10n/is/core.po index ba97904bd6..7eb1fde04b 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012-2013. +# kaztraz , 2012 +# sveinn , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "Deila með veftengli" msgid "Password protect" msgstr "Verja með lykilorði" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Lykilorð" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "Beiðni mistókst!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Notendanafn" @@ -521,37 +521,37 @@ msgstr "Ítarlegt" msgid "Data folder" msgstr "Gagnamappa" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Stilla gagnagrunn" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "verður notað" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Gagnagrunns notandi" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Gagnagrunns lykilorð" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nafn gagnagrunns" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Töflusvæði gagnagrunns" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Virkja uppsetningu" @@ -563,33 +563,33 @@ msgstr "vefþjónusta undir þinni stjórn" msgid "Log out" msgstr "Útskrá" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Sjálfvirkri innskráningu hafnað!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Ef þú breyttir ekki lykilorðinu þínu fyrir skömmu, er mögulegt að einhver annar hafi komist inn á aðganginn þinn." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Vinsamlegast breyttu lykilorðinu þínu til að tryggja öryggi þitt." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Týndir þú lykilorðinu?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "muna eftir mér" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Skrá inn" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/is/files.po b/l10n/is/files.po index 4a8254ee22..a3931dabaa 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "Skrár" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Deila" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/it/core.po b/l10n/it/core.po index 6eb124460f..5c46843e48 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. -# Francesco Apruzzese , 2011, 2012. -# , 2011, 2012. -# , 2013. -# , 2011. -# Vincenzo Reale , 2012-2013. +# zimba12 , 2011 +# Francesco Apruzzese , 2011, 2012 +# ufic , 2011, 2012 +# pgcloud , 2013 +# RColombo , 2011 +# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -299,7 +299,7 @@ msgstr "Condividi con collegamento" msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Password" @@ -415,7 +415,7 @@ msgid "Request failed!" msgstr "Richiesta non riuscita!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nome utente" @@ -525,37 +525,37 @@ msgstr "Avanzate" msgid "Data folder" msgstr "Cartella dati" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configura il database" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "sarà utilizzato" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Termina la configurazione" @@ -567,33 +567,33 @@ msgstr "servizi web nelle tue mani" msgid "Log out" msgstr "Esci" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Accesso automatico rifiutato." -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se non hai cambiato la password recentemente, il tuo account potrebbe essere compromesso." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "ricorda" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Accedi" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Accessi alternativi" diff --git a/l10n/it/files.po b/l10n/it/files.po index 5473d05bee..286c302d3c 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "File" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Condividi" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index fd5f9d065c..d09b77479f 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012-2013. -# , 2012. -# YANO Tetsu , 2013. +# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2012-2013 +# tt yn , 2012 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -297,7 +297,7 @@ msgstr "URLリンクで共有" msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "パスワード" @@ -413,7 +413,7 @@ msgid "Request failed!" msgstr "リクエスト失敗!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "ユーザ名" @@ -523,37 +523,37 @@ msgstr "詳細設定" msgid "Data folder" msgstr "データフォルダ" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "データベースを設定してください" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "が使用されます" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "データベースのユーザ名" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "データベースのパスワード" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "データベース名" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "データベースの表領域" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "データベースのホスト名" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "セットアップを完了します" @@ -565,33 +565,33 @@ msgstr "管理下にあるウェブサービス" msgid "Log out" msgstr "ログアウト" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自動ログインは拒否されました!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "アカウント保護の為、パスワードを再度の変更をお願いいたします。" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "パスワードを忘れましたか?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "パスワードを記憶する" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "ログイン" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "代替ログイン" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index a2e2db40fb..1cb98ebcdb 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "ファイル" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "共有" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 17e56b13b3..2985848c33 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" -"PO-Revision-Date: 2013-04-21 18:40+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "გაუზიარე ლინკით" msgid "Password protect" msgstr "პაროლით დაცვა" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "პაროლი" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "მოთხოვნა შეწყდა!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "მომხმარებელი" @@ -563,33 +563,33 @@ msgstr "თქვენი კონტროლის ქვეშ მყოფ msgid "Log out" msgstr "გამოსვლა" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "ავტომატური შესვლა უარყოფილია!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "თუ თქვენ არ შეცვლით პაროლს, თქვენი ანგარიში შეიძლება იყოს დაშვებადი სხვებისთვის" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "გთხოვთ შეცვალოთ თქვენი პაროლი, თქვენი ანგარიშის დასაცავად." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "დაგავიწყდათ პაროლი?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "დამახსოვრება" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "შესვლა" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "ალტერნატიული Login–ი" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 8e4edac3ec..9fcdd9fec3 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "ფაილები" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "გაზიარება" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index a4c7b6bbb9..4c531cc2d3 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# 남자사람 , 2012. -# , 2012. -# Park Shinjo , 2013. -# Shinjo Park , 2012. +# aoiob4305 , 2013 +# 남자사람 , 2012 +# yunhye , 2012 +# Shinjo Park , 2013 +# Shinjo Park , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -298,7 +298,7 @@ msgstr "URL 링크로 공유" msgid "Password protect" msgstr "암호 보호" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "암호" @@ -414,7 +414,7 @@ msgid "Request failed!" msgstr "요청이 실패했습니다!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "사용자 이름" @@ -524,37 +524,37 @@ msgstr "고급" msgid "Data folder" msgstr "데이터 폴더" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "데이터베이스 설정" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "사용될 예정" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "데이터베이스 테이블 공간" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "설치 완료" @@ -566,33 +566,33 @@ msgstr "내가 관리하는 웹 서비스" msgid "Log out" msgstr "로그아웃" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "자동 로그인이 거부되었습니다!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "최근에 암호를 변경하지 않았다면 계정이 탈취되었을 수도 있습니다!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "계정의 안전을 위하여 암호를 변경하십시오." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "암호를 잊으셨습니까?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "기억하기" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "로그인" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 76c1d9e6c9..8893a7a6c2 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "파일" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "공유" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index f7fd085575..64ab9ca7e9 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2011-2012. +# sim0n , 2013 +# sim0n , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Passwuert" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Benotzernumm" @@ -521,37 +521,37 @@ msgstr "Avancéiert" msgid "Data folder" msgstr "Daten Dossier" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Datebank konfiguréieren" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "wärt benotzt ginn" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Datebank Benotzer" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Datebank Passwuert" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Datebank Tabelle-Gréisst" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Datebank Server" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Installatioun ofschléissen" @@ -563,33 +563,33 @@ msgstr "Web Servicer ënnert denger Kontroll" msgid "Log out" msgstr "Ausloggen" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "verhalen" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Log dech an" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 65448a2433..f6f98a7c12 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "Dateien" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Deelen" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index ad04a7e8c8..23d9115c7f 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dr. ROX , 2011, 2012. +# andrejuseu , 2012 +# Dr. ROX , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "Dalintis nuoroda" msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Slaptažodis" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Prisijungimo vardas" @@ -521,37 +521,37 @@ msgstr "Išplėstiniai" msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Nustatyti duomenų bazę" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "bus naudojama" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Baigti diegimą" @@ -563,33 +563,33 @@ msgstr "jūsų valdomos web paslaugos" msgid "Log out" msgstr "Atsijungti" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatinis prisijungimas atmestas!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jei paskutinių metu nekeitėte savo slaptažodžio, Jūsų paskyra gali būti pavojuje!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Prašome pasikeisti slaptažodį dar kartą, dėl paskyros saugumo." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Pamiršote slaptažodį?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "prisiminti" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Prisijungti" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index a8ef079cd1..3c9729eafc 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "Failai" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Dalintis" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 921311120e..7c6dcac653 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Rūdolfs Mazurs , 2013. +# CPDZ , 2012 +# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "Dalīties ar saiti" msgid "Password protect" msgstr "Aizsargāt ar paroli" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Parole" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "Pieprasījums neizdevās!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Lietotājvārds" @@ -521,37 +521,37 @@ msgstr "Paplašināti" msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Konfigurēt datubāzi" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Datubāzes tabulas telpa" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Datubāzes serveris" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Pabeigt iestatīšanu" @@ -563,33 +563,33 @@ msgstr "tīmekļa servisi tavā varā" msgid "Log out" msgstr "Izrakstīties" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automātiskā ierakstīšanās ir noraidīta!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Ja neesat pēdējā laikā mainījis paroli, iespējams, ka jūsu konts ir kompromitēts." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Lūdzu, nomainiet savu paroli, lai atkal nodrošinātu savu kontu." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Aizmirsāt paroli?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "atcerēties" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Ierakstīties" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternatīvās pieteikšanās" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 8c0a4c852f..d75ed8885f 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "Datnes" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Dalīties" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 81face26f6..340277d940 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. -# Miroslav Jovanovic , 2012. -# Miroslav Jovanovic , 2012. +# Georgi Stanojevski , 2012 +# Miroslav Jovanovic , 2012 +# Miroslav Jovanovic , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -296,7 +296,7 @@ msgstr "Сподели со врска" msgid "Password protect" msgstr "Заштити со лозинка" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Лозинка" @@ -412,7 +412,7 @@ msgid "Request failed!" msgstr "Барањето не успеа!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Корисничко име" @@ -522,37 +522,37 @@ msgstr "Напредно" msgid "Data folder" msgstr "Фолдер со податоци" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Конфигурирај ја базата" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "ќе биде користено" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Корисник на база" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Табела во базата на податоци" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Сервер со база" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Заврши го подесувањето" @@ -564,33 +564,33 @@ msgstr "веб сервиси под Ваша контрола" msgid "Log out" msgstr "Одјава" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Одбиена автоматска најава!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Ако не сте ја промениле лозинката во скоро време, вашата сметка може да е компромитирана" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "запамти" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Најава" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 58ca65076d..77b1fcbac3 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "Датотеки" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Сподели" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index f15ffdc57f..0676fa3986 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmed Noor Kader Mustajir Md Eusoff , 2012. -# , 2011, 2012. -# Hadri Hilmi , 2012. +# Ahmed Noor Kader Mustajir Md Eusoff , 2012 +# Hadri Hilmi , 2011, 2012 +# Hadri Hilmi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -296,7 +296,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Kata laluan" @@ -412,7 +412,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nama pengguna" @@ -522,37 +522,37 @@ msgstr "Maju" msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Setup selesai" @@ -564,33 +564,33 @@ msgstr "Perkhidmatan web di bawah kawalan anda" msgid "Log out" msgstr "Log keluar" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "ingat" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Log masuk" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index c4d70c18af..b5e8982f89 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "fail" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Kongsi" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 3a4eaba426..a401ca1cc7 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011, 2012. -# Christer Eriksson , 2012. -# Daniel , 2012. -# , 2012. -# , 2012. -# , 2012. -# , 2012. +# anjar , 2011, 2012 +# Christer Eriksson , 2012 +# Daniel , 2012 +# espenbye , 2012 +# hdalgrav , 2012 +# owncloud , 2012 +# runesudden , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -300,7 +300,7 @@ msgstr "Del med link" msgid "Password protect" msgstr "Passordbeskyttet" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Passord" @@ -416,7 +416,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Brukernavn" @@ -526,37 +526,37 @@ msgstr "Avansert" msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "vil bli brukt" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Database tabellområde" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Fullfør oppsetting" @@ -568,33 +568,33 @@ msgstr "nettjenester under din kontroll" msgid "Log out" msgstr "Logg ut" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatisk pålogging avvist!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Hvis du ikke har endret passordet ditt nylig kan kontoen din være kompromitert" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Vennligst skift passord for å gjøre kontoen din sikker igjen." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Mistet passordet ditt?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "husk" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Logg inn" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index a7f1f1fb52..dfb6c72c3c 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -89,7 +89,7 @@ msgstr "Filer" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Del" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 391f1ef71e..0532294600 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -3,26 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012-2013. -# , 2011. -# , 2012. -# Erik Bent , 2012. -# , 2011. -# , 2012. -# , 2011. -# , 2012. -# Martin Wildeman , 2012. -# , 2012. -# Richard Bos , 2012. -# , 2012. -# , 2012. -# , 2012. +# André Koot , 2012-2013 +# isama , 2011 +# diederikdehaas , 2012 +# Erik Bent , 2012 +# Robin Appelman , 2011 +# jgelauff , 2012 +# koenvervloesem , 2011 +# Len , 2012 +# Martin Wildeman , 2012 +# Pietje8501 , 2012 +# Richard Bos , 2012 +# bartv , 2012 +# translatemonkey , 2012 +# webbmark , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -307,7 +307,7 @@ msgstr "Deel met link" msgid "Password protect" msgstr "Wachtwoord beveiliging" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Wachtwoord" @@ -423,7 +423,7 @@ msgid "Request failed!" msgstr "Verzoek mislukt!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Gebruikersnaam" @@ -533,37 +533,37 @@ msgstr "Geavanceerd" msgid "Data folder" msgstr "Gegevensmap" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configureer de database" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "zal gebruikt worden" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Database server" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Installatie afronden" @@ -575,33 +575,33 @@ msgstr "Webdiensten in eigen beheer" msgid "Log out" msgstr "Afmelden" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatische aanmelding geweigerd!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Als u uw wachtwoord niet onlangs heeft aangepast, kan uw account overgenomen zijn!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Wijzig uw wachtwoord zodat uw account weer beveiligd is." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Uw wachtwoord vergeten?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "onthoud gegevens" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Meld je aan" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternatieve inlogs" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 38a44f2f73..f6b1ebe483 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "Bestanden" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Delen" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 9414d1bcf4..dc0d3fe376 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# tartafione , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -294,7 +294,7 @@ msgstr "Parteja amb lo ligam" msgid "Password protect" msgstr "Parat per senhal" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Senhal" @@ -410,7 +410,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nom d'usancièr" @@ -520,37 +520,37 @@ msgstr "Avançat" msgid "Data folder" msgstr "Dorsièr de donadas" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "serà utilizat" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Configuracion acabada" @@ -562,33 +562,33 @@ msgstr "Services web jos ton contraròtle" msgid "Log out" msgstr "Sortida" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "bremba-te" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Dintrada" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index f414354f14..28233e4506 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "Fichièrs" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Parteja" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 91dcac0d46..3490807165 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -3,25 +3,25 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012-2013. -# Kamil Domański , 2011. -# , 2012. -# Maciej Tarmas , 2013. -# Marcin Małecki , 2011, 2012. -# Marcin Małecki , 2011. -# Marco Oliver Grunwald , 2013. -# Michał Plichta , 2013. -# , 2011. -# , 2012. -# Piotr Sokół , 2012. -# , 2012. +# Cyryl Sochacki , 2012 +# Cyryl Sochacki , 2012-2013 +# Kamil Domański , 2011 +# szymon.filip , 2012 +# Maciej Tarmas , 2013 +# Marcin Małecki , 2011, 2012 +# Marcin Małecki , 2011 +# mgrvnwald , 2013 +# emc , 2013 +# , 2011 +# emc , 2012 +# Piotr Sokół , 2012 +# emilia.krawczyk , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -306,7 +306,7 @@ msgstr "Współdziel wraz z odnośnikiem" msgid "Password protect" msgstr "Zabezpiecz hasłem" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Hasło" @@ -422,7 +422,7 @@ msgid "Request failed!" msgstr "Żądanie nieudane!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nazwa użytkownika" @@ -532,37 +532,37 @@ msgstr "Zaawansowane" msgid "Data folder" msgstr "Katalog danych" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Skonfiguruj bazę danych" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "zostanie użyte" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Hasło do bazy danych" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Zakończ konfigurowanie" @@ -574,33 +574,33 @@ msgstr "usługi internetowe pod kontrolą" msgid "Log out" msgstr "Wyloguj" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatyczne logowanie odrzucone!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jeśli hasło było dawno niezmieniane, twoje konto może być zagrożone!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "pamiętaj" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Zaloguj" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternatywne loginy" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 124aaa0de5..0ab02d0d00 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "Pliki" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Udostępnij" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 69739f01cb..c739d9d083 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -3,24 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2011. -# , 2012. -# , 2012. -# Guilherme Maluf Balzana , 2012. -# , 2012. -# , 2012. -# Rodrigo Tavares , 2013. -# Sedir G. Morais , 2013. -# Thiago Vicente , 2012. -# Unforgiving Fallout <>, 2012. -# Van Der Fran , 2011, 2012. +# dudanogueira , 2012 +# dudanogueira , 2011 +# FredMaranhao , 2012 +# Schopfer , 2012 +# Guilherme Maluf Balzana , 2012 +# henriquemeira , 2012 +# sedir , 2012 +# Rodrigo Tavares , 2013 +# sedir , 2013 +# Thiago Vicente , 2012 +# Unforgiving Fallout <>, 2012 +# Van Der Fran , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -305,7 +305,7 @@ msgstr "Compartilhar com link" msgid "Password protect" msgstr "Proteger com senha" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Senha" @@ -421,7 +421,7 @@ msgid "Request failed!" msgstr "A requisição falhou!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nome de Usuário" @@ -531,37 +531,37 @@ msgstr "Avançado" msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "será usado" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Usuário do banco de dados" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Host do banco de dados" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Concluir configuração" @@ -573,33 +573,33 @@ msgstr "serviços web sob seu controle" msgid "Log out" msgstr "Sair" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Entrada Automática no Sistema Rejeitada!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Por favor troque sua senha para tornar sua conta segura novamente." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Esqueceu sua senha?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "lembrar" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Fazer login" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Logins alternativos" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 6f7bc462b8..0ec426f8bf 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "Arquivos" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Compartilhar" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index cde8bb6189..64f137d209 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012-2013. -# Daniel Pinto , 2013. -# , 2013. -# Duarte Velez Grilo , 2012. -# , 2011, 2012. -# Helder Meneses , 2012-2013. -# Nelson Rosado , 2012. -# , 2012. +# Mouxy , 2012-2013 +# Mouxy , 2013 +# Duarte Velez Grilo , 2013 +# Duarte Velez Grilo , 2012 +# Helder Meneses , 2011, 2012 +# Helder Meneses , 2012-2013 +# Nelson Rosado , 2012 +# rjgpp1994 , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -301,7 +301,7 @@ msgstr "Partilhar com link" msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Palavra chave" @@ -417,7 +417,7 @@ msgid "Request failed!" msgstr "O pedido falhou!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Utilizador" @@ -527,37 +527,37 @@ msgstr "Avançado" msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configure a base de dados" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "vai ser usada" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Anfitrião da base de dados" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Acabar instalação" @@ -569,33 +569,33 @@ msgstr "serviços web sob o seu controlo" msgid "Log out" msgstr "Sair" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Login automático rejeitado!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sido comprometida!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Esqueceu-se da sua password?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "lembrar" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Contas de acesso alternativas" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 303d309678..0dea755d2d 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "Ficheiros" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Partilhar" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 35676e96cf..769f19975a 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu , 2011, 2012. -# Dimon Pockemon <>, 2012. -# Dumitru Ursu <>, 2013. -# Eugen Mihalache , 2012. -# , 2012. -# , 2012. +# Claudiu , 2011, 2012 +# Dimon Pockemon <>, 2012 +# Dimon Pockemon <>, 2013 +# Eugen Mihalache , 2012 +# g.ciprian , 2012 +# laurentiucristescu , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -299,7 +299,7 @@ msgstr "Partajare cu legătură" msgid "Password protect" msgstr "Protejare cu parolă" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Parola" @@ -415,7 +415,7 @@ msgid "Request failed!" msgstr "Solicitarea nu a reusit" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Utilizator" @@ -525,37 +525,37 @@ msgstr "Avansat" msgid "Data folder" msgstr "Director date" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configurează baza de date" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "vor fi folosite" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Finalizează instalarea" @@ -567,33 +567,33 @@ msgstr "servicii web controlate de tine" msgid "Log out" msgstr "Ieșire" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Logare automata respinsa" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Daca nu schimbi parola cand de curand , contul tau poate fi conpromis" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Te rog schimba parola pentru ca, contul tau sa fie securizat din nou." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "amintește" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Autentificare" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 1acc17d956..583c25dfe3 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "Fișiere" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Partajează" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 6f4f8a3c68..4aaffc396f 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -3,24 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012. -# , 2011, 2012. -# , 2012. -# Mihail Vasiliev , 2012. -# , 2012. -# Sergey , 2013. -# , 2013. -# , 2012. -# , 2011. -# Victor Bravo <>, 2012. -# , 2012. -# Дмитрий , 2013. +# Denis , 2012 +# jekader , 2011, 2012 +# k0ldbl00d , 2012 +# Mihail Vasiliev , 2012 +# sam002 , 2012 +# m4rkell , 2013 +# adol , 2013 +# skoptev , 2012 +# tonymc , 2011 +# Victor Bravo <>, 2012 +# VicDeo , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -305,7 +305,7 @@ msgstr "Поделиться с ссылкой" msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Пароль" @@ -421,7 +421,7 @@ msgid "Request failed!" msgstr "Запрос не удался!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Имя пользователя" @@ -531,37 +531,37 @@ msgstr "Дополнительно" msgid "Data folder" msgstr "Директория с данными" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Настройка базы данных" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "будет использовано" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Имя пользователя для базы данных" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Пароль для базы данных" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Завершить установку" @@ -573,33 +573,33 @@ msgstr "Сетевые службы под твоим контролем" msgid "Log out" msgstr "Выйти" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Автоматический вход в систему отключен!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Если Вы недавно не меняли свой пароль, то Ваша учетная запись может быть скомпрометирована!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Пожалуйста, смените пароль, чтобы обезопасить свою учетную запись." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "запомнить" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Войти" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Альтернативные имена пользователя" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 49a330d958..810ede2fd7 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "Файлы" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Открыть доступ" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index b6aa78f2ae..43ba83ca1b 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Дмитрий , 2013. +# AnnaSch , 2013 +# AnnaSch , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -296,7 +296,7 @@ msgstr "Опубликовать с ссылкой" msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Пароль" @@ -412,7 +412,7 @@ msgid "Request failed!" msgstr "Не удалось выполнить запрос!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Имя пользователя" @@ -522,37 +522,37 @@ msgstr "Расширенный" msgid "Data folder" msgstr "Папка данных" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Настроить базу данных" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "будет использоваться" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Пользователь базы данных" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Пароль базы данных" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Имя базы данных" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Табличная область базы данных" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Сервер базы данных" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Завершение настройки" @@ -564,33 +564,33 @@ msgstr "веб-сервисы под Вашим контролем" msgid "Log out" msgstr "Выйти" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Автоматический вход в систему отклонен!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Если Вы недавно не меняли пароль, Ваш аккаунт может быть подвергнут опасности!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Пожалуйста, измените пароль, чтобы защитить ваш аккаунт еще раз." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "запомнить" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Войти" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Альтернативные Имена" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index b48157bd8c..75073601bc 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "Файлы" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Сделать общим" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index bd225017a6..ec8ebef483 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. -# Chamara Disanayake , 2012. -# , 2012. +# Anushke Guneratne , 2012 +# Chamara Disanayake , 2012 +# Thanoja , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -296,7 +296,7 @@ msgstr "යොමුවක් මඟින් බෙදාගන්න" msgid "Password protect" msgstr "මුර පදයකින් ආරක්ශාකරන්න" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "මුර පදය " @@ -412,7 +412,7 @@ msgid "Request failed!" msgstr "ඉල්ලීම අසාර්ථකයි!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "පරිශීලක නම" @@ -522,37 +522,37 @@ msgstr "දියුණු/උසස්" msgid "Data folder" msgstr "දත්ත ෆෝල්ඩරය" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "දත්ත සමුදාය හැඩගැසීම" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "භාවිතා වනු ඇත" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" @@ -564,33 +564,33 @@ msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවා msgid "Log out" msgstr "නික්මීම" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "මුරපදය අමතකද?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "මතක තබාගන්න" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "ප්‍රවේශවන්න" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index b45d15a72e..d07812b9bd 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "ගොනු" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "බෙදා හදා ගන්න" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 6ec59a28f0..f9e1c5b98c 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# georg , 2013. -# , 2011, 2012. -# Marián Hvolka , 2013. -# , 2012. -# , 2013. -# Roman Priesol , 2012. -# , 2012. +# georg007 , 2013 +# intense , 2011, 2012 +# mhh , 2013 +# martinb , 2012 +# mehturt , 2013 +# Roman Priesol , 2012 +# martin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -300,7 +300,7 @@ msgstr "Zdieľať cez odkaz" msgid "Password protect" msgstr "Chrániť heslom" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Heslo" @@ -416,7 +416,7 @@ msgid "Request failed!" msgstr "Požiadavka zlyhala!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Prihlasovacie meno" @@ -526,37 +526,37 @@ msgstr "Rozšírené" msgid "Data folder" msgstr "Priečinok dát" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Nastaviť databázu" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "bude použité" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Dokončiť inštaláciu" @@ -568,33 +568,33 @@ msgstr "webové služby pod vašou kontrolou" msgid "Log out" msgstr "Odhlásiť" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatické prihlásenie bolo zamietnuté!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kompromitovaný." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie Vášho účtu" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "zapamätať" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Prihlásiť sa" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternatívne prihlasovanie" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 2401273827..d01b6d67a4 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "Súbory" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Zdieľať" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 3d0bd6ff5d..9eafb170c6 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" -"PO-Revision-Date: 2013-04-19 19:00+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -299,7 +299,7 @@ msgstr "Omogoči souporabo preko povezave" msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Geslo" @@ -415,7 +415,7 @@ msgid "Request failed!" msgstr "Zahteva je spodletela!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Uporabniško Ime" @@ -567,33 +567,33 @@ msgstr "spletne storitve pod vašim nadzorom" msgid "Log out" msgstr "Odjava" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Samodejno prijavljanje je zavrnjeno!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "V primeru, da gesla za dostop že nekaj časa niste spremenili, je račun lahko ogrožen!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Spremenite geslo za izboljšanje zaščite računa." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "zapomni si" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Prijava" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Druge prijavne možnosti" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index ec5cce5e76..bf8ab3566a 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "Datoteke" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Souporaba" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 1179d65ec7..cd69913173 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. +# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -294,7 +294,7 @@ msgstr "Nda me lidhje" msgid "Password protect" msgstr "Mbro me kod" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Kodi" @@ -410,7 +410,7 @@ msgid "Request failed!" msgstr "Kërkesa dështoi!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Përdoruesi" @@ -520,37 +520,37 @@ msgstr "Të përparuara" msgid "Data folder" msgstr "Emri i dosjes" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Konfiguro database-in" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "do të përdoret" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Përdoruesi i database-it" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Kodi i database-it" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Emri i database-it" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tablespace-i i database-it" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Pozicioni (host) i database-it" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Mbaro setup-in" @@ -562,33 +562,33 @@ msgstr "shërbime web nën kontrollin tënd" msgid "Log out" msgstr "Dalje" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Hyrja automatike u refuzua!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Nqse nuk keni ndryshuar kodin kohët e fundit, llogaria juaj mund të jetë komprometuar." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Ju lutemi, ndryshoni kodin për ta siguruar përsëri llogarinë tuaj." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Ke humbur kodin?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "kujto" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Hyrje" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Hyrje alternative" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 606f9f1ae1..f704e3b4aa 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "Skedarët" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Nda" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index e976000343..334a75c0be 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivan Petrović , 2012-2013. -# , 2012. -# Slobodan Terzić , 2011, 2012. +# Ivan Petrović , 2012-2013 +# Kostic , 2012 +# Slobodan Terzić , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -296,7 +296,7 @@ msgstr "Подели линк" msgid "Password protect" msgstr "Заштићено лозинком" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Лозинка" @@ -412,7 +412,7 @@ msgid "Request failed!" msgstr "Захтев одбијен!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Корисничко име" @@ -522,37 +522,37 @@ msgstr "Напредно" msgid "Data folder" msgstr "Фацикла података" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Подешавање базе" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "ће бити коришћен" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Радни простор базе података" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Заврши подешавање" @@ -564,33 +564,33 @@ msgstr "веб сервиси под контролом" msgid "Log out" msgstr "Одјава" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Аутоматска пријава је одбијена!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Ако ускоро не промените лозинку ваш налог може бити компромитован!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Промените лозинку да бисте обезбедили налог." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Изгубили сте лозинку?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "упамти" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Пријава" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 71ea6e3279..c77914efeb 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "Датотеке" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Дели" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index a176c33235..8db740580a 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André , 2013. -# Christer Eriksson , 2012. -# Daniel Sandman , 2012. -# , 2011. -# Magnus Höglund , 2012-2013. -# , 2012. -# , 2011, 2012. +# Lokal_Profil , 2013 +# Christer Eriksson , 2012 +# Daniel Sandman , 2012 +# HakanS , 2011 +# Magnus Höglund , 2012-2013 +# Magnus Höglund , 2012 +# Daniel Sandman , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -300,7 +300,7 @@ msgstr "Delad med länk" msgid "Password protect" msgstr "Lösenordsskydda" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Lösenord" @@ -416,7 +416,7 @@ msgid "Request failed!" msgstr "Begäran misslyckades!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Användarnamn" @@ -526,37 +526,37 @@ msgstr "Avancerat" msgid "Data folder" msgstr "Datamapp" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Konfigurera databasen" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "kommer att användas" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Avsluta installation" @@ -568,33 +568,33 @@ msgstr "webbtjänster under din kontroll" msgid "Log out" msgstr "Logga ut" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatisk inloggning inte tillåten!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Om du inte har ändrat ditt lösenord nyligen så kan ditt konto vara manipulerat!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Ändra genast lösenord för att säkra ditt konto." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "kom ihåg" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Logga in" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternativa inloggningar" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index de62909653..576202cd31 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "Filer" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Dela" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 50d6af9b6b..17ed3cfa66 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. +# Rupan , 2013 +# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "இணைப்புடன் பகிர்தல்" msgid "Password protect" msgstr "கடவுச்சொல்லை பாதுகாத்தல்" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "கடவுச்சொல்" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "வேண்டுகோள் தோல்வியுற்றது!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "பயனாளர் பெயர்" @@ -521,37 +521,37 @@ msgstr "மேம்பட்ட" msgid "Data folder" msgstr "தரவு கோப்புறை" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "தரவுத்தளத்தை தகவமைக்க" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "பயன்படுத்தப்படும்" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "தரவுத்தள பெயர்" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "தரவுத்தள அட்டவணை" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" @@ -563,33 +563,33 @@ msgstr "உங்கள் கட்டுப்பாட்டின் கீ msgid "Log out" msgstr "விடுபதிகை செய்க" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "தன்னிச்சையான புகுபதிகை நிராகரிப்பட்டது!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "உங்களுடைய கடவுச்சொல்லை அண்மையில் மாற்றவில்லையின், உங்களுடைய கணக்கு சமரசமாகிவிடும்!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "உங்களுடைய கணக்கை மீண்டும் பாதுகாக்க தயவுசெய்து உங்களுடைய கடவுச்சொல்லை மாற்றவும்." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "ஞாபகப்படுத்துக" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "புகுபதிகை" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 55acdc040e..0cc76612d7 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "கோப்புகள்" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "பகிர்வு" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index cbe68a6ffc..4d9a9aa8ad 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 323ff19b35..7f342cfd4f 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 9aa2cf650f..a47e3767de 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 66d0beacb1..42e2d968d4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index a5f57b921a..464f64d6be 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 45a6030b24..cf43e3fdbf 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 1e13c1cd46..fd51c21839 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 6980695d55..118cb59012 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 82ef792603..d305a518ff 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index d789d64047..8cd1f46d5f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index f1a95dae40..fe050b17af 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index a5d768f9ca..dcba6badd3 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013. -# AriesAnywhere Anywhere , 2012. +# AriesAnywhere Anywhere , 2012-2013 +# AriesAnywhere Anywhere , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "แชร์ด้วยลิงก์" msgid "Password protect" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "รหัสผ่าน" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "คำร้องขอล้มเหลว!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "ชื่อผู้ใช้งาน" @@ -521,37 +521,37 @@ msgstr "ขั้นสูง" msgid "Data folder" msgstr "โฟลเดอร์เก็บข้อมูล" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "กำหนดค่าฐานข้อมูล" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "จะถูกใช้" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Database host" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" @@ -563,33 +563,33 @@ msgstr "web services under your control" msgid "Log out" msgstr "ออกจากระบบ" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "การเข้าสู่ระบบอัตโนมัติถูกปฏิเสธแล้ว" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "หากคุณยังไม่ได้เปลี่ยนรหัสผ่านของคุณเมื่อเร็วๆนี้, บัญชีของคุณอาจถูกบุกรุกโดยผู้อื่น" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "กรุณาเปลี่ยนรหัสผ่านของคุณอีกครั้ง เพื่อป้องกันบัญชีของคุณให้ปลอดภัย" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "ลืมรหัสผ่าน?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "จำรหัสผ่าน" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "เข้าสู่ระบบ" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 59a3de6acb..62c22585f9 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "ไฟล์" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "แชร์" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 943cc42487..fb9404245f 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" -"PO-Revision-Date: 2013-04-22 07:40+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: ifthenelse \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 634affc9c2..0618c008e2 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -87,7 +87,7 @@ msgstr "Dosyalar" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Paylaş" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 7935fe6434..52ea6b2eba 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# Soul Kim , 2012. -# , 2012. -# , 2013. -# пан Володимир , 2013. +# Dmytro Dzubenko , 2012 +# skoptev , 2012 +# Soul Kim , 2012 +# VicDeo , 2012 +# volodya327 , 2013 +# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -299,7 +299,7 @@ msgstr "Опублікувати через посилання" msgid "Password protect" msgstr "Захистити паролем" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Пароль" @@ -415,7 +415,7 @@ msgid "Request failed!" msgstr "Невдалий запит!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Ім'я користувача" @@ -525,37 +525,37 @@ msgstr "Додатково" msgid "Data folder" msgstr "Каталог даних" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Налаштування бази даних" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "буде використано" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Таблиця бази даних" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Хост бази даних" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Завершити налаштування" @@ -567,33 +567,33 @@ msgstr "веб-сервіс під вашим контролем" msgid "Log out" msgstr "Вихід" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Автоматичний вхід в систему відхилений!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Якщо Ви не міняли пароль останнім часом, Ваш обліковий запис може бути скомпрометованим!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Будь ласка, змініть свій пароль, щоб знову захистити Ваш обліковий запис." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Вхід" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Альтернативні Логіни" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index ee7f46e413..659dfb1d2a 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "Файли" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Поділитися" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 1accb85dd1..74db989174 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# , 2012. -# sao sang , 2013. -# Son Nguyen , 2012. -# Sơn Nguyễn , 2012-2013. +# khanhnd , 2012 +# mattheu_9x , 2012 +# mattheu_9x , 2012 +# saosangm , 2013 +# Sơn Nguyễn , 2012 +# Sơn Nguyễn , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -299,7 +299,7 @@ msgstr "Chia sẻ với liên kết" msgid "Password protect" msgstr "Mật khẩu bảo vệ" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Mật khẩu" @@ -415,7 +415,7 @@ msgid "Request failed!" msgstr "Yêu cầu của bạn không thành công !" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Tên người dùng" @@ -525,37 +525,37 @@ msgstr "Nâng cao" msgid "Data folder" msgstr "Thư mục dữ liệu" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Cấu hình cơ sở dữ liệu" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "được sử dụng" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "Database host" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Cài đặt hoàn tất" @@ -567,33 +567,33 @@ msgstr "các dịch vụ web dưới sự kiểm soát của bạn" msgid "Log out" msgstr "Đăng xuất" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Tự động đăng nhập đã bị từ chối !" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Nếu bạn không thay đổi mật khẩu gần đây của bạn, tài khoản của bạn có thể gặp nguy hiểm!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài khoản của bạn một lần nữa." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Bạn quên mật khẩu ?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "ghi nhớ" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Đăng nhập" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Đăng nhập khác" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 01777fb8c7..8fec184584 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "Tập tin" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Chia sẻ" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index b40e228844..73282c1f37 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# HO Gin Wang , 2013. -# marguerite su , 2012. +# bluehattree , 2012 +# kopisee , 2013 +# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -296,7 +296,7 @@ msgstr "分享链接" msgid "Password protect" msgstr "密码保护" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "密码" @@ -412,7 +412,7 @@ msgid "Request failed!" msgstr "请求失败!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "用户名" @@ -522,37 +522,37 @@ msgstr "进阶" msgid "Data folder" msgstr "数据存放文件夹" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "将会使用" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "数据库用户名" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "数据库表格空间" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "完成安装" @@ -564,33 +564,33 @@ msgstr "你控制下的网络服务" msgid "Log out" msgstr "注销" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自动登录被拒绝!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "如果您最近没有修改您的密码,那您的帐号可能被攻击了!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "请修改您的密码以保护账户。" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "备忘" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "登陆" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "备选登录" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 55d0b39f86..d874322e7d 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "文件" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "分享" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index de6872551d..6e259b6cfe 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:58+0200\n" -"PO-Revision-Date: 2013-04-23 15:00+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 0ece5eedbf..f1c860f7e0 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "文件" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "分享" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 2d4729abd3..b25f65cbed 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dennis , 2013. +# amanda.shuuemura , 2012 +# dtsang29 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -295,7 +295,7 @@ msgstr "以連結分享" msgid "Password protect" msgstr "密碼保護" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "密碼" @@ -411,7 +411,7 @@ msgid "Request failed!" msgstr "請求失敗" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "用戶名稱" @@ -521,37 +521,37 @@ msgstr "進階" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "將被使用" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "資料庫帳戶" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" @@ -563,33 +563,33 @@ msgstr "" msgid "Log out" msgstr "登出" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自動登入被拒" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "如果你近期未曾更改密碼, 你的帳號可能被洩露!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "請更改你的密碼以保護你的帳戶" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "忘記密碼" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "記住" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "登入" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 64913d6656..2a0d9458c6 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "文件" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "分享" #: js/fileactions.js:126 msgid "Delete permanently" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 83022879f3..22db10f4ea 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" -"PO-Revision-Date: 2013-04-19 04:10+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: admachen \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -300,7 +300,7 @@ msgstr "使用連結分享" msgid "Password protect" msgstr "密碼保護" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "密碼" @@ -416,7 +416,7 @@ msgid "Request failed!" msgstr "請求失敗!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "使用者名稱" @@ -568,33 +568,33 @@ msgstr "由您控制的網路服務" msgid "Log out" msgstr "登出" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自動登入被拒!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "請更改您的密碼以再次取得您帳戶的控制權。" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "忘記密碼?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "記住" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "登入" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "替代登入方法" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 9493d1b048..6b85e02d5b 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"PO-Revision-Date: 2013-04-24 16:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -89,7 +89,7 @@ msgstr "檔案" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "分享" #: js/fileactions.js:126 msgid "Delete permanently" From a0df5903b0fd2d22fb523c292d4012c74b2bbd7e Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 25 Apr 2013 01:55:56 +0200 Subject: [PATCH 47/55] [tx-robot] updated from transifex --- apps/files/l10n/da.php | 2 ++ apps/files/l10n/fi_FI.php | 1 + apps/files_external/l10n/da.php | 1 + apps/files_external/l10n/de_DE.php | 1 + apps/files_external/l10n/tr.php | 1 + apps/user_ldap/l10n/tr.php | 1 + l10n/da/files.po | 12 +++++------ l10n/da/files_external.po | 10 ++++----- l10n/de_DE/files_external.po | 9 ++++---- l10n/fi_FI/files.po | 8 ++++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 32 ++++++++++++++--------------- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/files_external.po | 8 ++++---- l10n/tr/user_ldap.po | 6 +++--- 23 files changed, 60 insertions(+), 52 deletions(-) diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index da33a3f2f1..785365a2fb 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -26,6 +26,7 @@ "undo" => "fortryd", "perform delete operation" => "udfør slet operation", "1 file uploading" => "1 fil uploades", +"files uploading" => "uploader filer", "'.' is an invalid file name." => "'.' er et ugyldigt filnavn.", "File name cannot be empty." => "Filnavnet kan ikke stå tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", @@ -33,6 +34,7 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Dit download forberedes. Dette kan tage lidt tid ved større filer.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom", +"Not enough space available" => "ikke nok tilgængelig ledig plads ", "Upload cancelled." => "Upload afbrudt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", "URL cannot be empty." => "URLen kan ikke være tom.", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 67f704b6d7..e795438b9f 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -4,6 +4,7 @@ "Unable to rename file" => "Tiedoston nimeäminen uudelleen ei onnistunut", "No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", "There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan", "The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain", "No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty", diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index c1c070e3d7..f2c1e45778 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Fejl ved konfiguration af Google Drive plads", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advarsel: Understøttelsen for Curl i PHP er enten ikke aktiveret eller ikke installeret. Det er ikke muligt, at montere ownCloud / WebDAV eller GoogleDrive. Spørg din system administrator om at installere det. ", "External Storage" => "Ekstern opbevaring", "Folder name" => "Mappenavn", "External storage" => "Eksternt lager", diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index d55c0c6909..e1a5c2ffcc 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Achtung: Die Curl Unterstützung von PHP ist nicht aktiviert oder installiert. Das Laden von ownCloud / WebDAV oder GoogleDrive Freigaben ist nicht möglich. Bitte Sie Ihren Systemadministrator, das Modul zu installieren.", "External Storage" => "Externer Speicher", "Folder name" => "Ordnername", "External storage" => "Externer Speicher", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index def2e35ebf..3c3c0c24f9 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, ", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => " Ihbar . Dayanma Curl PHPden aktif veya yuklemedi degil. Monte ownClouden/WebDay veya GoogleDrive mumkun degil. Lutfen sistm yonetici sormak yuklemek icin. ", "External Storage" => "Harici Depolama", "Folder name" => "Dizin ismi", "External storage" => "Harici Depolama", diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index 3b013da17e..3cb94d5df0 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -4,6 +4,7 @@ "Connection test succeeded" => "Bağlantı testi başarılı oldu", "Connection test failed" => "Bağlantı testi başarısız oldu", "Confirm Deletion" => "Silmeyi onayla", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Uyari Apps kullanici_Idap ve user_webdavauth uyunmayan. Bu belki sik degil. Lutfen sistem yonetici sormak on aktif yapmaya. ", "Host" => "Sunucu", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokol atlamak edesin, sadece SSL istiyorsaniz. O zaman, idapsile baslamak. ", "Base DN" => "Ana DN", diff --git a/l10n/da/files.po b/l10n/da/files.po index 5b5a147bbe..9de02a4b78 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -6,7 +6,7 @@ # cronner , 2012 # Frederik Lassen , 2013 # Morten Juhl-Johansen Zölde-Fejér , 2011-2013 -# Ole Holm Frandsen , 2012 +# Ole Holm Frandsen , 2012-2013 # osos , 2012 # Pascal d'Hermilly , 2011 # muunsim , 2012 @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"PO-Revision-Date: 2013-04-24 18:30+0000\n" +"Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -142,7 +142,7 @@ msgstr "1 fil uploades" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "uploader filer" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -178,7 +178,7 @@ msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" #: js/files.js:272 msgid "Not enough space available" -msgstr "" +msgstr "ikke nok tilgængelig ledig plads " #: js/files.js:312 msgid "Upload cancelled." diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 7ae349229f..bbe1780ee3 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -6,14 +6,14 @@ # Bawl , 2013 # cronner , 2012 # Morten Juhl-Johansen Zölde-Fejér , 2012 -# Ole Holm Frandsen , 2012 +# Ole Holm Frandsen , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"PO-Revision-Date: 2013-04-24 18:30+0000\n" +"Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,7 +59,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Advarsel: Understøttelsen for Curl i PHP er enten ikke aktiveret eller ikke installeret. Det er ikke muligt, at montere ownCloud / WebDAV eller GoogleDrive. Spørg din system administrator om at installere det. " #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 85d87af76e..54573a0816 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# a.tangemann , 2013 # Mirodin , 2012 # deh3nne , 2012 # I Robot , 2012 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"PO-Revision-Date: 2013-04-24 17:40+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,7 +62,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Achtung: Die Curl Unterstützung von PHP ist nicht aktiviert oder installiert. Das Laden von ownCloud / WebDAV oder GoogleDrive Freigaben ist nicht möglich. Bitte Sie Ihren Systemadministrator, das Modul zu installieren." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index b551facaf9..81c628332c 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"PO-Revision-Date: 2013-04-24 16:50+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,7 +47,7 @@ msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:" #: ajax/upload.php:29 msgid "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4d9a9aa8ad..09082a0924 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 7f342cfd4f..53e5b411c3 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index a47e3767de..d3fcd8aefc 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 42e2d968d4..280b4fd24f 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 464f64d6be..27a1b59adf 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index cf43e3fdbf..cdd285eaa3 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index fd51c21839..2b4a81f05f 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 118cb59012..9837948dd0 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index d305a518ff..3f3469d507 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -132,16 +132,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:79 +#: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" msgstr "" @@ -419,7 +419,7 @@ msgstr "" msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:78 +#: templates/personal.php:56 templates/users.php:76 msgid "Display Name" msgstr "" @@ -463,38 +463,38 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:77 +#: templates/users.php:21 templates/users.php:75 msgid "Login Name" msgstr "" -#: templates/users.php:32 +#: templates/users.php:30 msgid "Create" msgstr "" -#: templates/users.php:35 +#: templates/users.php:33 msgid "Default Storage" msgstr "" -#: templates/users.php:41 templates/users.php:139 +#: templates/users.php:39 templates/users.php:133 msgid "Unlimited" msgstr "" -#: templates/users.php:59 templates/users.php:154 +#: templates/users.php:57 templates/users.php:148 msgid "Other" msgstr "" -#: templates/users.php:84 +#: templates/users.php:82 msgid "Storage" msgstr "" -#: templates/users.php:95 +#: templates/users.php:93 msgid "change display name" msgstr "" -#: templates/users.php:99 +#: templates/users.php:97 msgid "set new password" msgstr "" -#: templates/users.php:134 +#: templates/users.php:128 msgid "Default" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 8cd1f46d5f..04544dc04f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index fe050b17af..929c4db848 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 131b082711..40ad3efd58 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"PO-Revision-Date: 2013-04-24 23:50+0000\n" +"Last-Translator: KAT.RAT12 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,7 +59,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr " Ihbar . Dayanma Curl PHPden aktif veya yuklemedi degil. Monte ownClouden/WebDay veya GoogleDrive mumkun degil. Lutfen sistm yonetici sormak yuklemek icin. " #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index f87c51711e..1477ef29b4 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 18:20+0000\n" +"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"PO-Revision-Date: 2013-04-24 23:54+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Uyari Apps kullanici_Idap ve user_webdavauth uyunmayan. Bu belki sik degil. Lutfen sistem yonetici sormak on aktif yapmaya. " #: templates/settings.php:11 msgid "" From c9c1e483c5e7af27a9ad56376a9dccfc893ef268 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 25 Apr 2013 11:36:41 +0200 Subject: [PATCH 48/55] use utf-8 encoding for json --- lib/json.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/json.php b/lib/json.php index f929e95895..6ba0b13806 100644 --- a/lib/json.php +++ b/lib/json.php @@ -14,7 +14,7 @@ class OC_JSON{ public static function setContentTypeHeader($type='application/json') { if (!self::$send_content_type_header) { // We send json data - header( 'Content-Type: '.$type ); + header( 'Content-Type: '.$type . '; charset=utf-8'); self::$send_content_type_header = true; } } From 2d4af5dfca4acccb7e47c1cfe679086b570f089a Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 25 Apr 2013 14:20:32 +0300 Subject: [PATCH 49/55] Correct function description $password is not supported --- lib/files/filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index c0e9d215fb..6cba4a4b8a 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -287,7 +287,7 @@ class Filesystem { } /** - * fill in the correct values for $user, and $password placeholders + * fill in the correct values for $user * * @param string $input * @param string $input From 632221bed0a33d2b8d6c1eb7cc285f715967fd26 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 25 Apr 2013 14:27:08 +0300 Subject: [PATCH 50/55] Correct the parameter description Thanks @kabum --- lib/files/filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index 6cba4a4b8a..8c8e80c1be 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -289,7 +289,7 @@ class Filesystem { /** * fill in the correct values for $user * - * @param string $input + * @param string $user * @param string $input * @return string */ From 31d7f4df2a8870c288ed73a3a6c501d4b15365ea Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 25 Apr 2013 16:11:48 +0200 Subject: [PATCH 51/55] Make sure the filesystem is initialized when searching for mounts --- lib/files/mount.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/files/mount.php b/lib/files/mount.php index 59c98e9dcc..0030d0ee7a 100644 --- a/lib/files/mount.php +++ b/lib/files/mount.php @@ -136,6 +136,7 @@ class Mount { * @return Mount */ public static function find($path) { + \OC_Util::setupFS(); $path = self::formatPath($path); if (isset(self::$mounts[$path])) { return self::$mounts[$path]; @@ -163,6 +164,7 @@ class Mount { * @return Mount[] */ public static function findIn($path) { + \OC_Util::setupFS(); $path = self::formatPath($path); $result = array(); $pathLength = strlen($path); @@ -186,6 +188,7 @@ class Mount { * @return Mount[] */ public static function findByStorageId($id) { + \OC_Util::setupFS(); if (strlen($id) > 64) { $id = md5($id); } From cea56df59ec4530d78e66fd341738d77e0ab1745 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 25 Apr 2013 16:56:48 +0200 Subject: [PATCH 52/55] Have the filecache updater testcase clean the filesystem properly --- lib/files/filesystem.php | 1 + tests/lib/files/cache/updater.php | 9 +++------ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index c0e9d215fb..edd37d7b46 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -311,6 +311,7 @@ class Filesystem { */ static public function tearDown() { self::clearMounts(); + self::$defaultInstance = null; } /** diff --git a/tests/lib/files/cache/updater.php b/tests/lib/files/cache/updater.php index aaf932c97f..dad3cd7e65 100644 --- a/tests/lib/files/cache/updater.php +++ b/tests/lib/files/cache/updater.php @@ -42,14 +42,11 @@ class Updater extends \PHPUnit_Framework_TestCase { $this->scanner->scan(''); $this->cache = $this->storage->getCache(); + \OC\Files\Filesystem::tearDown(); if (!self::$user) { - if (!\OC\Files\Filesystem::getView()) { - self::$user = uniqid(); - \OC\Files\Filesystem::init(self::$user, '/' . self::$user . '/files'); - } else { - self::$user = \OC_User::getUser(); - } + self::$user = uniqid(); } + \OC\Files\Filesystem::init(self::$user, '/' . self::$user . '/files'); Filesystem::clearMounts(); Filesystem::mount($this->storage, array(), '/' . self::$user . '/files'); From 7ea2f785f462a3d0b5dd134cc088e59d1bd07a21 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 26 Apr 2013 01:58:21 +0200 Subject: [PATCH 53/55] [tx-robot] updated from transifex --- apps/files/l10n/ru.php | 1 + apps/files_external/l10n/fr.php | 1 + apps/files_external/l10n/ro.php | 3 + apps/files_external/l10n/ru.php | 1 + apps/files_versions/l10n/ro.php | 12 ++- apps/user_ldap/l10n/tr.php | 9 +++ core/l10n/ro.php | 9 +++ l10n/af_ZA/settings.po | 78 +++++++++---------- l10n/ar/files.po | 4 +- l10n/ar/settings.po | 88 ++++++++++----------- l10n/be/settings.po | 78 +++++++++---------- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/settings.po | 76 ++++++++---------- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/settings.po | 80 +++++++++---------- l10n/ca/files.po | 4 +- l10n/ca/settings.po | 90 ++++++++++----------- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/settings.po | 90 ++++++++++----------- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/settings.po | 74 ++++++++---------- l10n/da/files.po | 4 +- l10n/da/settings.po | 102 +++++++++++------------- l10n/de/files.po | 4 +- l10n/de/settings.po | 76 ++++++++---------- l10n/de_DE/files.po | 4 +- l10n/de_DE/settings.po | 76 ++++++++---------- l10n/el/files.po | 4 +- l10n/el/settings.po | 106 ++++++++++++------------- l10n/eo/files.po | 4 +- l10n/eo/settings.po | 84 +++++++++----------- l10n/es/files.po | 4 +- l10n/es/settings.po | 114 +++++++++++++-------------- l10n/es_AR/files.po | 4 +- l10n/es_AR/settings.po | 86 ++++++++++----------- l10n/et_EE/files.po | 4 +- l10n/et_EE/settings.po | 84 +++++++++----------- l10n/eu/files.po | 4 +- l10n/eu/settings.po | 86 ++++++++++----------- l10n/fa/files.po | 4 +- l10n/fa/settings.po | 90 ++++++++++----------- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/settings.po | 84 +++++++++----------- l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 9 ++- l10n/fr/settings.po | 116 +++++++++++++--------------- l10n/gl/files.po | 4 +- l10n/gl/settings.po | 90 ++++++++++----------- l10n/he/files.po | 4 +- l10n/he/settings.po | 86 ++++++++++----------- l10n/hi/settings.po | 78 +++++++++---------- l10n/hr/files.po | 4 +- l10n/hr/settings.po | 84 +++++++++----------- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/settings.po | 86 ++++++++++----------- l10n/hy/settings.po | 78 +++++++++---------- l10n/ia/settings.po | 82 +++++++++----------- l10n/id/files.po | 4 +- l10n/id/settings.po | 90 ++++++++++----------- l10n/is/files.po | 4 +- l10n/is/settings.po | 80 +++++++++---------- l10n/it/files.po | 4 +- l10n/it/settings.po | 92 ++++++++++------------ l10n/ja_JP/files.po | 4 +- l10n/ja_JP/settings.po | 76 ++++++++---------- l10n/ka/settings.po | 78 +++++++++---------- l10n/ka_GE/files.po | 6 +- l10n/ka_GE/settings.po | 74 ++++++++---------- l10n/kn/settings.po | 78 +++++++++---------- l10n/ko/files.po | 4 +- l10n/ko/settings.po | 88 ++++++++++----------- l10n/ku_IQ/settings.po | 78 +++++++++---------- l10n/lb/files.po | 4 +- l10n/lb/settings.po | 80 +++++++++---------- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/settings.po | 82 +++++++++----------- l10n/lv/files.po | 4 +- l10n/lv/settings.po | 84 +++++++++----------- l10n/mk/files.po | 4 +- l10n/mk/settings.po | 84 +++++++++----------- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/settings.po | 86 ++++++++++----------- l10n/my_MM/settings.po | 78 +++++++++---------- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/settings.po | 94 +++++++++++----------- l10n/ne/settings.po | 78 +++++++++---------- l10n/nl/files.po | 4 +- l10n/nl/settings.po | 102 +++++++++++------------- l10n/nn_NO/settings.po | 82 +++++++++----------- l10n/oc/files.po | 4 +- l10n/oc/settings.po | 80 +++++++++---------- l10n/pl/files.po | 4 +- l10n/pl/settings.po | 106 ++++++++++++------------- l10n/pl_PL/settings.po | 78 +++++++++---------- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/settings.po | 100 +++++++++++------------- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/settings.po | 94 +++++++++++----------- l10n/ro/core.po | 25 +++--- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 13 ++-- l10n/ro/files_versions.po | 27 +++---- l10n/ro/settings.po | 92 ++++++++++------------ l10n/ru/files.po | 9 ++- l10n/ru/files_external.po | 9 ++- l10n/ru/settings.po | 108 ++++++++++++-------------- l10n/ru_RU/files.po | 4 +- l10n/ru_RU/settings.po | 82 +++++++++----------- l10n/si_LK/files.po | 4 +- l10n/si_LK/settings.po | 84 +++++++++----------- l10n/sk/settings.po | 78 +++++++++---------- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/settings.po | 90 ++++++++++----------- l10n/sl/files.po | 4 +- l10n/sl/settings.po | 90 ++++++++++----------- l10n/sq/files.po | 4 +- l10n/sq/settings.po | 80 +++++++++---------- l10n/sr/files.po | 4 +- l10n/sr/settings.po | 84 +++++++++----------- l10n/sr@latin/settings.po | 80 +++++++++---------- l10n/sv/files.po | 4 +- l10n/sv/settings.po | 96 +++++++++++------------ l10n/sw_KE/settings.po | 78 +++++++++---------- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/settings.po | 80 +++++++++---------- l10n/te/settings.po | 80 +++++++++---------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 42 ++++------ l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/settings.po | 84 +++++++++----------- l10n/tr/files.po | 4 +- l10n/tr/settings.po | 96 +++++++++++------------ l10n/tr/user_ldap.po | 22 +++--- l10n/uk/files.po | 4 +- l10n/uk/settings.po | 86 ++++++++++----------- l10n/ur_PK/settings.po | 78 +++++++++---------- l10n/vi/files.po | 4 +- l10n/vi/settings.po | 92 ++++++++++------------ l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/settings.po | 84 +++++++++----------- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/settings.po | 94 +++++++++++----------- l10n/zh_HK/settings.po | 78 +++++++++---------- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/settings.po | 74 ++++++++---------- settings/l10n/ar.php | 3 - settings/l10n/ca.php | 3 - settings/l10n/cs_CZ.php | 3 - settings/l10n/da.php | 3 - settings/l10n/de.php | 3 - settings/l10n/de_DE.php | 3 - settings/l10n/el.php | 3 - settings/l10n/es.php | 3 - settings/l10n/es_AR.php | 3 - settings/l10n/et_EE.php | 3 - settings/l10n/eu.php | 3 - settings/l10n/fa.php | 3 - settings/l10n/fi_FI.php | 3 - settings/l10n/fr.php | 3 - settings/l10n/gl.php | 3 - settings/l10n/hu_HU.php | 3 - settings/l10n/id.php | 3 - settings/l10n/it.php | 3 - settings/l10n/ja_JP.php | 3 - settings/l10n/ka_GE.php | 3 - settings/l10n/lv.php | 3 - settings/l10n/nl.php | 3 - settings/l10n/pl.php | 3 - settings/l10n/pt_BR.php | 3 - settings/l10n/pt_PT.php | 3 - settings/l10n/ru.php | 3 - settings/l10n/sk_SK.php | 3 - settings/l10n/sl.php | 3 - settings/l10n/sr.php | 3 - settings/l10n/sv.php | 3 - settings/l10n/tr.php | 3 - settings/l10n/uk.php | 3 - settings/l10n/vi.php | 3 - settings/l10n/zh_CN.GB2312.php | 3 - settings/l10n/zh_CN.php | 3 - settings/l10n/zh_TW.php | 3 - 190 files changed, 3111 insertions(+), 3783 deletions(-) diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 89a164a35f..3f0eb4d050 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -26,6 +26,7 @@ "undo" => "отмена", "perform delete operation" => "выполняется операция удаления", "1 file uploading" => "загружается 1 файл", +"files uploading" => "файлы загружаются", "'.' is an invalid file name." => "'.' - неправильное имя файла.", "File name cannot be empty." => "Имя файла не может быть пустым.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index c42c89f857..5006133a7b 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Erreur lors de la configuration du support de stockage Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Attention : Le support de Curl n'est pas activé ou installé dans PHP. Le montage de ownCloud / WebDAV ou GoogleDrive n'est pas possible. Contactez votre administrateur système pour l'installer.", "External Storage" => "Stockage externe", "Folder name" => "Nom du dossier", "External storage" => "Stockage externe", diff --git a/apps/files_external/l10n/ro.php b/apps/files_external/l10n/ro.php index 5747205dc0..ed23b4cca8 100644 --- a/apps/files_external/l10n/ro.php +++ b/apps/files_external/l10n/ro.php @@ -6,11 +6,14 @@ "Error configuring Google Drive storage" => "Eroare la configurarea mediului de stocare Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Atenție: suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Atentie: Suportul Curl nu este pornit / instalat in configuratia PHP! Montarea ownCloud / WebDAV / GoogleDrive nu este posibila! Intrebati administratorul sistemului despre aceasta problema!", "External Storage" => "Stocare externă", "Folder name" => "Denumire director", +"External storage" => "Stocare externă", "Configuration" => "Configurație", "Options" => "Opțiuni", "Applicable" => "Aplicabil", +"Add storage" => "Adauga stocare", "None set" => "Niciunul", "All Users" => "Toți utilizatorii", "Groups" => "Grupuri", diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index 46b73a67f0..d2c5292bac 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Ошибка при настройке хранилища Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Внимание: Поддержка Curl в PHP не включена или не установлена. Подключение ownCloud / WebDAV или GoogleDrive невозможно. Попросите вашего системного администратора установить его.", "External Storage" => "Внешний носитель", "Folder name" => "Имя папки", "External storage" => "Внешний носитель данных", diff --git a/apps/files_versions/l10n/ro.php b/apps/files_versions/l10n/ro.php index 7dfaee3672..cd9fc89dcc 100644 --- a/apps/files_versions/l10n/ro.php +++ b/apps/files_versions/l10n/ro.php @@ -1,5 +1,11 @@ "Istoric", -"Files Versioning" => "Versionare fișiere", -"Enable" => "Activare" +"Could not revert: %s" => "Nu a putut reveni: %s", +"success" => "success", +"File %s was reverted to version %s" => "Fisierul %s a revenit la versiunea %s", +"failure" => "eșec", +"File %s could not be reverted to version %s" => "Fisierele %s nu au putut reveni la versiunea %s", +"No old versions available" => "Versiunile vechi nu sunt disponibile", +"No path specified" => "Nici un dosar specificat", +"Versions" => "Versiuni", +"Revert a file to a previous version by clicking on its revert button" => "Readuceti un fișier la o versiune anterioară, făcând clic pe butonul revenire" ); diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index 3cb94d5df0..e6d450301e 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -1,13 +1,21 @@ "Uyunlama mantikli ve baglama yerlestirmek edebilmi.", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Uyunlama gecerli, fakat Baglama yapamadi. Lutfen kontrol yapmak, eger bu iyi yerlertirdi. ", +"The configuration is invalid. Please look in the ownCloud log for further details." => "Uyunma mantikli degil. Lutfen log daha kontrol yapmak. ", "Deletion failed" => "Silme başarısız oldu", +"Take over settings from recent server configuration?" => "Parametri sonadan uyunlama cikarmak mi?", "Keep settings?" => "Ayarları kalsınmı?", +"Cannot add server configuration" => "Sunucu uyunlama birlemek edemen. ", "Connection test succeeded" => "Bağlantı testi başarılı oldu", "Connection test failed" => "Bağlantı testi başarısız oldu", +"Do you really want to delete the current Server Configuration?" => "Hakikatten, Sonuncu Funksyon durmak istiyor mi?", "Confirm Deletion" => "Silmeyi onayla", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Uyari Apps kullanici_Idap ve user_webdavauth uyunmayan. Bu belki sik degil. Lutfen sistem yonetici sormak on aktif yapmaya. ", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Ihbar Modulu PHP LDAP yuklemdi degil, backend calismacak. Lutfen sistem yonetici sormak yuklemek icin.", "Host" => "Sunucu", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokol atlamak edesin, sadece SSL istiyorsaniz. O zaman, idapsile baslamak. ", "Base DN" => "Ana DN", +"One Base DN per line" => "Bir Tabani DN herbir dizi. ", "You can specify Base DN for users and groups in the Advanced tab" => "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. ", "User DN" => "Kullanıcı DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN musterinin, kimle baglamaya yapacagiz,meselâ uid=agent.dc mesela, dc=com Gecinme adisiz ici, DN ve Parola bos birakmak. ", @@ -35,6 +43,7 @@ "Group Display Name Field" => "Grub Ekrane Alani Adi", "The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP kullamayin grub adi ownCloud uremek icin. ", "Base Group Tree" => "Temel Grup Ağacı", +"One Group Base DN per line" => "Bir Grubu Tabani DN her dizgi. ", "Group-Member association" => "Grup-Üye işbirliği", "in bytes" => "byte cinsinden", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Kullanıcı adı bölümünü boş bırakın (varsayılan). ", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 51c1523d7e..fd6647360a 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Utilizatorul %s a partajat dosarul \"%s\" cu tine. Îl poți descărca de aici: %s ", "Category type not provided." => "Tipul de categorie nu este prevazut", "No category to add?" => "Nici o categorie de adăugat?", +"This category already exists: %s" => "Această categorie deja există: %s", "Object type not provided." => "Tipul obiectului nu este prevazut", "%s ID not provided." => "ID-ul %s nu a fost introdus", "Error adding %s to favorites." => "Eroare la adăugarea %s la favorite", @@ -52,6 +53,7 @@ "Error" => "Eroare", "The app name is not specified." => "Numele aplicației nu a fost specificat", "The required file {file} is not installed!" => "Fișierul obligatoriu {file} nu este instalat!", +"Shared" => "Partajat", "Share" => "Partajează", "Error while sharing" => "Eroare la partajare", "Error while unsharing" => "Eroare la anularea partajării", @@ -82,6 +84,8 @@ "Error setting expiration date" => "Eroare la specificarea datei de expirare", "Sending ..." => "Se expediază...", "Email sent" => "Mesajul a fost expediat", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Modernizarea a eșuat! Te rugam sa raportezi problema aici..", +"The update was successful. Redirecting you to ownCloud now." => "Modernizare reusita! Vei fii redirectionat!", "ownCloud password reset" => "Resetarea parolei ownCloud ", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", "You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email", @@ -103,8 +107,12 @@ "Edit categories" => "Editează categoriile", "Add" => "Adaugă", "Security Warning" => "Avertisment de securitate", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versiunea dvs. PHP este vulnerabil la acest atac un octet null (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Vă rugăm să actualizați instalarea dvs. PHP pentru a utiliza ownCloud in siguranță.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Directorul de date și fișiere sunt, probabil, accesibile de pe Internet, deoarece .htaccess nu funcționează.", +"For information how to properly configure your server, please see the documentation." => "Pentru informatii despre configurarea corecta a serverului accesati pagina Documentare.", "Create an admin account" => "Crează un cont de administrator", "Advanced" => "Avansat", "Data folder" => "Director date", @@ -124,6 +132,7 @@ "Lost your password?" => "Ai uitat parola?", "remember" => "amintește", "Log in" => "Autentificare", +"Alternative Logins" => "Conectări alternative", "prev" => "precedentul", "next" => "următorul", "Updating ownCloud to version %s, this may take a while." => "Actualizăm ownCloud la versiunea %s, aceasta poate dura câteva momente." diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 83b7447a27..6308fa253c 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 125a752041..af0914278f 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmad Matalqah , 2013. -# , 2012. -# Raed Chammem , 2013. -# , 2012. -# , 2011, 2012. +# Matalqah , 2013 +# Robin Appelman , 2012 +# Raed667 , 2013 +# aboodilankaboot, 2012 +# blackcoder , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -26,12 +26,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "فشل تحميل القائمة من الآب ستور" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "لم يتم التأكد من الشخصية بنجاح" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "تعذر تغيير اسم الحساب" @@ -121,7 +125,7 @@ msgstr "حصل خطأ أثناء تحديث التطبيق" msgid "Updated" msgstr "تم التحديث بنجاح" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "حفظ" @@ -137,16 +141,16 @@ msgstr "تراجع" msgid "Unable to remove user" msgstr "تعذر حذف المستخدم" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "مجموعات" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "مدير المجموعة" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "حذف" @@ -317,19 +321,19 @@ msgstr "سجل" msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "المزيد" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "أقل" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "إصدار" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 1b93bc1763..d331243b61 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:58+0200\n" -"PO-Revision-Date: 2013-04-23 09:20+0000\n" -"Last-Translator: Stefan Ilivanov \n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Възникна проблем с идентификацията" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -119,7 +123,7 @@ msgstr "" msgid "Updated" msgstr "Обновено" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Записване..." @@ -135,16 +139,16 @@ msgstr "възтановяване" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Групи" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Изтриване" @@ -323,11 +327,11 @@ msgstr "Още" msgid "Less" msgstr "По-малко" -#: templates/admin.php:235 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Версия" -#: templates/admin.php:238 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index f70b3f4d8d..e9f27a0ba4 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Shubhra Paul , 2013. +# Shubhra Paul , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "অনুমোদন ঘটিত সমস্যা" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -117,7 +121,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." @@ -133,16 +137,16 @@ msgstr "ক্রিয়া প্রত্যাহার" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "গোষ্ঠীসমূহ" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "গোষ্ঠী প্রশাসক" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "মুছে ফেল" @@ -313,19 +317,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "বেশী" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "কম" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 57ef354d7c..6fa9330d75 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# , 2012. -# Josep Tomàs , 2012. -# , 2013. -# , 2011-2012. +# bury1000 , 2012 +# jmontane , 2012 +# Josep Tomàs , 2012 +# Josep Tomàs , 2012 +# rogerc , 2013 +# rogerc , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "No s'ha pogut carregar la llista des de l'App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Error d'autenticació" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "No s'ha pogut canviar el nom a mostrar" @@ -122,7 +126,7 @@ msgstr "Error en actualitzar l'aplicació" msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "S'està desant..." @@ -138,16 +142,16 @@ msgstr "desfés" msgid "Unable to remove user" msgstr "No s'ha pogut eliminar l'usuari" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grups" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grup Admin" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Suprimeix" @@ -318,19 +322,19 @@ msgstr "Registre" msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Més" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Menys" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versió" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 7cf113bc59..abc25c7f35 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Jan Krejci , 2011-2012. -# Martin , 2011-2012. -# Michal Hrušecký , 2012. -# , 2012. -# Tomáš Chvátal , 2012-2013. +# Robin Appelman , 2012 +# Jan Krejci , 2011-2012 +# Martin , 2011-2012 +# Michal Hrušecký , 2012 +# Michal Hrušecký , 2012 +# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nelze načíst seznam z App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Chyba ověření" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Nelze změnit zobrazované jméno" @@ -122,7 +126,7 @@ msgstr "Chyba při aktualizaci aplikace" msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Ukládám..." @@ -138,16 +142,16 @@ msgstr "zpět" msgid "Unable to remove user" msgstr "Nelze odebrat uživatele" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Skupiny" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Správa skupiny" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Smazat" @@ -318,19 +322,19 @@ msgstr "Záznam" msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Více" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Méně" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Verze" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 27acbefd39..9370aba6c7 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:58+0200\n" -"PO-Revision-Date: 2013-04-23 19:50+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Gwall dilysu" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Yn cadw..." @@ -132,16 +136,16 @@ msgstr "dadwneud" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Dileu" @@ -320,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 47340bcdee..d1c5b496da 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -3,24 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Frederik Lassen , 2013. -# , 2012. -# , 2011. -# Morten Juhl-Johansen Zölde-Fejér , 2011-2013. -# Ole Holm Frandsen , 2012. -# Pascal d'Hermilly , 2011. -# , 2012. -# , 2012-2013. -# Thomas , 2013. -# Thomas Tanghus <>, 2012. -# Thomas Tanghus , 2012. +# cronner , 2012 +# Frederik Lassen , 2013 +# Robin Appelman , 2012 +# mikkel_ilu , 2011 +# Morten Juhl-Johansen Zölde-Fejér , 2011-2013 +# Ole Holm Frandsen , 2012 +# Pascal d'Hermilly , 2011 +# muunsim , 2012 +# ressel , 2012-2013 +# cronner , 2013 +# Thomas Tanghus , 2012 +# Thomas Tanghus , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -33,12 +33,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kunne ikke indlæse listen fra App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Adgangsfejl" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Kunne ikke skifte skærmnavn" @@ -128,7 +132,7 @@ msgstr "Der opstod en fejl under app opgraderingen" msgid "Updated" msgstr "Opdateret" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Gemmer..." @@ -144,16 +148,16 @@ msgstr "fortryd" msgid "Unable to remove user" msgstr "Kan ikke fjerne bruger" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupper" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Gruppe Administrator" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Slet" @@ -324,19 +328,19 @@ msgstr "Log" msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mere" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Mindre" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Version" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 0f6b2fc926..6b3a20aa3a 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -27,9 +27,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-17 07:21+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,12 +41,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Fehler bei der Anmeldung" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Das Ändern des Anzeigenamens ist nicht möglich" @@ -136,7 +140,7 @@ msgstr "Fehler beim Aktualisieren der App" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Speichern..." @@ -152,16 +156,16 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Benutzer konnte nicht entfernt werden." -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Gruppen" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Löschen" @@ -340,11 +344,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:235 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 718fd022b4..98bfee366b 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -32,9 +32,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-17 07:20+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,12 +46,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Fehler bei der Anmeldung" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Das Ändern des Anzeigenamens ist nicht möglich" @@ -141,7 +145,7 @@ msgstr "Es ist ein Fehler während des Updates aufgetreten" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Speichern..." @@ -157,16 +161,16 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Gruppen" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Löschen" @@ -345,11 +349,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:235 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index f80aa6d858..5813eb75e6 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -3,26 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dimitris M. , 2012-2013. -# Efstathios Iosifidis , 2012. -# Efstathios Iosifidis , 2013. -# Efstathios Iosifidis , 2012. -# , 2012. -# , 2012. -# Marios Bekatoros <>, 2012. -# Nisok Kosin , 2012. -# , 2011. -# , 2011. -# Petros Kyladitis , 2011-2012. -# , 2013. -# Wasilis Mandratzis , 2013. -# Γιάννης Ανθυμίδης , 2012. +# Dimitris M. , 2012-2013 +# Efstathios Iosifidis , 2012 +# Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2012 +# Robin Appelman , 2012 +# Robin Appelman , 2012 +# Marios Bekatoros <>, 2012 +# Nisok Kosin , 2012 +# Petros Kyladitis , 2011 +# Petros Kyladitis , 2011 +# Petros Kyladitis , 2011-2012 +# xneo1 , 2013 +# Wasilis , 2013 +# Γιάννης Ανθυμίδης , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -35,12 +35,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Σφάλμα στην φόρτωση της λίστας από το App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Δεν είναι δυνατή η αλλαγή του ονόματος εμφάνισης" @@ -130,7 +134,7 @@ msgstr "Σφάλμα κατά την ενημέρωση της εφαρμογή msgid "Updated" msgstr "Ενημερώθηκε" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Αποθήκευση..." @@ -146,16 +150,16 @@ msgstr "αναίρεση" msgid "Unable to remove user" msgstr "Αδυναμία αφαίρεση χρήστη" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Ομάδες" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Ομάδα Διαχειριστών" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Διαγραφή" @@ -326,19 +330,19 @@ msgstr "Καταγραφές" msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 5ad89620f3..3e945734ea 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2013. -# Mariano , 2012. -# , 2011, 2012. +# Mariano , 2013 +# Mariano , 2012 +# Mariano , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ne eblis ŝargi liston el aplikaĵovendejo" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Aŭtentiga eraro" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -119,7 +123,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Konservante..." @@ -135,16 +139,16 @@ msgstr "malfari" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupoj" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupadministranto" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Forigi" @@ -315,19 +319,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Pli" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Malpli" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Eldono" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 13236df5dc..548cd2b449 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -3,30 +3,30 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Art O. Pal , 2012. -# Daniel Manterola , 2013. -# , 2012. -# Javier Llorente , 2012. -# , 2013. -# , 2011-2012. -# Marcos , 2013. -# , 2011. -# oSiNaReF <>, 2012. -# , 2013. -# , 2012. -# Raul Fernandez Garcia , 2012. -# Ricardo A. Hermosilla Carrillo , 2013. -# , 2012. -# , 2011. -# Rubén Trujillo , 2012. -# , 2011-2012. -# Vladimir Martinez Sierra , 2013. +# Art O. Pal , 2012 +# dfml , 2013 +# telco2011 , 2012 +# Javier Llorente , 2012 +# juanman , 2013 +# juanman , 2011-2012 +# Marcos , 2013 +# Dante_King , 2011 +# oSiNaReF <>, 2012 +# pedro.navia , 2013 +# pggx999 , 2012 +# Raul Fernandez Garcia , 2012 +# Ricardo Hermosilla , 2013 +# rodrigo.calvo , 2012 +# Romain DEP. , 2011 +# Rubén Trujillo , 2012 +# xsergiolpx , 2011-2012 +# msvladimir , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -39,12 +39,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Error de autenticación" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Incapaz de cambiar el nombre" @@ -134,7 +138,7 @@ msgstr "Error mientras se actualizaba" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Guardando..." @@ -150,16 +154,16 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "No se puede quitar el usuario" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupos" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupo admin" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Eliminar" @@ -330,19 +334,19 @@ msgstr "Historial" msgid "Log level" msgstr "Nivel de Historial" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Más" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Menos" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Version" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 6d8d518077..9caac3184a 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012. -# CJTess , 2013. -# , 2012. -# Javier Victor Mariano Bruno , 2013. +# Agustin Ferrario , 2012 +# cjtess , 2013 +# cjtess , 2012 +# Javier Victor Mariano Bruno , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -25,12 +25,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Error al autenticar" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "No fue posible cambiar el nombre mostrado" @@ -120,7 +124,7 @@ msgstr "Error al actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Guardando..." @@ -136,16 +140,16 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "Imposible remover usuario" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupos" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Borrar" @@ -316,19 +320,19 @@ msgstr "Log" msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Más" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Menos" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versión" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 3532232094..c98a71c89c 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Pisike Sipelgas , 2013. -# Rivo Zängov , 2011-2013. +# Robin Appelman , 2012 +# pisike.sipelgas , 2013 +# Rivo Zängov , 2011-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "App Sotre'i nimekirja laadimine ebaõnnestus" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Autentimise viga" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Ei saa muuta kuvatavat nime" @@ -119,7 +123,7 @@ msgstr "Viga rakenduse uuendamisel" msgid "Updated" msgstr "Uuendatud" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Salvestamine..." @@ -135,16 +139,16 @@ msgstr "tagasi" msgid "Unable to remove user" msgstr "Ei suuda kustutada kasutajat" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupid" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupi admin" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Kustuta" @@ -315,19 +319,19 @@ msgstr "Logi" msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Rohkem" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Vähem" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versioon" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 4f70111c6e..b2e58a5580 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Asier Urio Larrea , 2011. -# Piarres Beobide , 2012. +# asieriko , 2013 +# asieriko , 2012 +# asieriko , 2011 +# Piarres Beobide , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -25,12 +25,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ezin izan da App Dendatik zerrenda kargatu" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Autentifikazio errorea" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Ezin izan da bistaratze izena aldatu" @@ -120,7 +124,7 @@ msgstr "Errorea aplikazioa eguneratzen zen bitartean" msgid "Updated" msgstr "Eguneratuta" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Gordetzen..." @@ -136,16 +140,16 @@ msgstr "desegin" msgid "Unable to remove user" msgstr "Ezin izan da erabiltzailea aldatu" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Taldeak" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Talde administradorea" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Ezabatu" @@ -316,19 +320,19 @@ msgstr "Egunkaria" msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Gehiago" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index a39dc9e68b..47225882dc 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Amir Reza Asadi , 2013. -# , 2012. -# Hossein nag , 2012. -# mahdi Kereshteh , 2013. -# , 2012. -# vahid chakoshy , 2012. +# Amir Reza Asadi , 2013 +# basir , 2012 +# Hossein nag , 2012 +# miki_mika1362 , 2013 +# ho2o2oo , 2012 +# vahid chakoshy , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "قادر به بارگذاری لیست از فروشگاه اپ نیستم" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "خطا در اعتبار سنجی" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "امکان تغییر نام نمایشی شما وجود ندارد" @@ -122,7 +126,7 @@ msgstr "خطا در هنگام بهنگام سازی برنامه" msgid "Updated" msgstr "بروز رسانی انجام شد" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "درحال ذخیره ..." @@ -138,16 +142,16 @@ msgstr "بازگشت" msgid "Unable to remove user" msgstr "حذف کاربر امکان پذیر نیست" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "گروه ها" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "گروه مدیران" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "پاک کردن" @@ -318,19 +322,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "بیش‌تر" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "نسخه" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index dbaeb19403..f8cd476e3a 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jesse Jaara , 2012. -# Jiri Grönroos , 2012-2013. -# , 2012. +# Jesse Jaara , 2012 +# Jiri Grönroos , 2012-2013 +# teho , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Todennusvirhe" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Näyttönimen muuttaminen epäonnistui" @@ -119,7 +123,7 @@ msgstr "Virhe sovellusta päivittäessä" msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Tallennetaan..." @@ -135,16 +139,16 @@ msgstr "kumoa" msgid "Unable to remove user" msgstr "Käyttäjän poistaminen ei onnistunut" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Ryhmät" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Ryhmän ylläpitäjä" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Poista" @@ -315,19 +319,19 @@ msgstr "Loki" msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Enemmän" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versio" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 5f91f1ca56..925a7f1696 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Christophe Lherieau , 2013 # ouafnico , 2012 # Romain DEP. , 2012 # Zertrin , 2013 @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"PO-Revision-Date: 2013-04-25 15:50+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +59,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Attention : Le support de Curl n'est pas activé ou installé dans PHP. Le montage de ownCloud / WebDAV ou GoogleDrive n'est pas possible. Contactez votre administrateur système pour l'installer." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 564e045b53..d359b6fd18 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -3,31 +3,31 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adalberto Rodrigues , 2013. -# Brice , 2012. -# Cédric MARTIN , 2013. -# Christophe Lherieau , 2013. -# Cyril Glapa , 2012. -# , 2013. -# , 2011. -# , 2012. -# , 2012. -# , 2012. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# , 2012. -# Nahir Mohamed , 2012-2013. -# , 2012. -# Robert Di Rosa <>, 2012. -# , 2011, 2012. -# Romain DEP. , 2012-2013. -# , 2013. +# Adalberto Rodrigues , 2013 +# Brice , 2012 +# Flywall , 2013 +# Christophe Lherieau , 2013 +# Cyril Glapa , 2012 +# dbasquin , 2013 +# Francois_Boulogne , 2011 +# Florentin Le Moal , 2012 +# gp4004 , 2012 +# guiguidu31300 , 2012 +# Jan-Christoph Borchardt , 2011 +# ytzelf , 2012 +# mishka , 2012 +# Nahir Mohamed , 2012-2013 +# Pierre-Amiel Giraud , 2012 +# Robert Di Rosa <>, 2012 +# Romain DEP. , 2011, 2012 +# Romain DEP. , 2012-2013 +# jiminybillybob , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -40,12 +40,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Impossible de charger la liste depuis l'App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Erreur d'authentification" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Impossible de modifier le nom d'affichage" @@ -135,7 +139,7 @@ msgstr "Erreur lors de la mise à jour de l'application" msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Sauvegarde..." @@ -151,16 +155,16 @@ msgstr "annuler" msgid "Unable to remove user" msgstr "Impossible de retirer l'utilisateur" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Groupes" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Groupe Admin" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Supprimer" @@ -331,19 +335,19 @@ msgstr "Log" msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Plus" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Moins" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Version" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 2230f6a0de..bcd8187ba8 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# antiparvos , 2012. -# , 2012-2013. -# , 2013. -# , 2012. -# Miguel Anxo Bouzada , 2013. -# Xosé M. Lamas , 2012. +# antiparvos , 2012 +# mbouzada , 2012-2013 +# mbouzada , 2013 +# mbouzada , 2012 +# mbouzada , 2013 +# Xosé M. Lamas , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Non foi posíbel cargar a lista desde a App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Produciuse un erro de autenticación" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Non é posíbel cambiar o nome visíbel" @@ -122,7 +126,7 @@ msgstr "Produciuse un erro mentres actualizaba o aplicativo" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Gardando..." @@ -138,16 +142,16 @@ msgstr "desfacer" msgid "Unable to remove user" msgstr "Non é posíbel retirar o usuario" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupos" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupo Admin" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Eliminar" @@ -318,19 +322,19 @@ msgstr "Rexistro" msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Máis" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Menos" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versión" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index afbda925de..078b2eefa6 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Gilad Naaman , 2012. -# , 2012. -# , 2011. -# Yaron Shahrabani , 2012. +# Gilad Naaman , 2012 +# idop , 2012 +# Tomer Cohen , 2011 +# Yaron Shahrabani , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -25,12 +25,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "לא ניתן לטעון רשימה מה־App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "שגיאת הזדהות" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -120,7 +124,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "שומר.." @@ -136,16 +140,16 @@ msgstr "ביטול" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "קבוצות" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "מנהל הקבוצה" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "מחיקה" @@ -316,19 +320,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "יותר" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "פחות" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "גרסא" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index e6e8a04521..7bbcfc37cc 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Davor Kustec , 2011, 2012. -# , 2012. -# Thomas Silađi , 2012. +# Davor Kustec , 2011, 2012 +# fposavec , 2012 +# Thomas Silađi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nemogićnost učitavanja liste sa Apps Stora" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Greška kod autorizacije" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -119,7 +123,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Spremanje..." @@ -135,16 +139,16 @@ msgstr "vrati" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupe" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupa Admin" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Obriši" @@ -315,19 +319,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index b1e991aa40..9f4635ef47 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Toth , 2012. -# , 2013. -# Laszlo Tornoci , 2013. -# Peter Borsa , 2011. +# Adam Toth , 2012 +# gyeben , 2013 +# Laszlo Tornoci , 2013 +# Peter Borsa , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -25,12 +25,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nem tölthető le a lista az App Store-ból" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Azonosítási hiba" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Nem sikerült megváltoztatni a megjelenítési nevet" @@ -120,7 +124,7 @@ msgstr "Hiba történt a programfrissítés közben" msgid "Updated" msgstr "Frissítve" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Mentés..." @@ -136,16 +140,16 @@ msgstr "visszavonás" msgid "Unable to remove user" msgstr "A felhasználót nem sikerült eltávolítáni" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Csoportok" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Csoportadminisztrátor" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Törlés" @@ -316,19 +320,19 @@ msgstr "Naplózás" msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Több" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Verzió" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Ջնջել" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the , 2011. -# Emilio Sepúlveda , 2012. +# Emilio Sepúlveda , 2011 +# Emilio Sepúlveda , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -118,7 +122,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -134,16 +138,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Gruppos" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Deler" @@ -314,19 +318,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index d9e1287658..05971cc93a 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Muhammad Fauzan , 2012. -# Muhammad Panji , 2012. -# Muhammad Radifar , 2011. -# , 2013. -# Widya Walesa , 2013. +# elmakong , 2012 +# Muhammad Fauzan , 2012 +# Muhammad Panji , 2012 +# Muhammad Radifar , 2011 +# rodin , 2013 +# w41l , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Tidak dapat memuat daftar dari App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Galat autentikasi" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Tidak dapat mengubah nama tampilan" @@ -122,7 +126,7 @@ msgstr "Gagal ketika memperbarui aplikasi" msgid "Updated" msgstr "Diperbarui" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Menyimpan..." @@ -138,16 +142,16 @@ msgstr "urungkan" msgid "Unable to remove user" msgstr "Tidak dapat menghapus pengguna" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grup" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Admin Grup" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Hapus" @@ -318,19 +322,19 @@ msgstr "Catat" msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Lainnya" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versi" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 7a60fd8a20..306d3b28f2 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012-2013. +# sveinn , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ekki tókst að hlaða lista frá forrita síðu" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Villa við auðkenningu" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -117,7 +121,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Er að vista ..." @@ -133,16 +137,16 @@ msgstr "afturkalla" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Hópar" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Hópstjóri" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Eyða" @@ -313,19 +317,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Meira" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Minna" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 4e47bbc088..81f5c63d28 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Francesco Apruzzese , 2011. -# , 2012. -# Jan-Christoph Borchardt , 2011. -# , 2011-2013. -# , 2011. -# Vincenzo Reale , 2012-2013. +# formalist , 2012 +# Francesco Apruzzese , 2011 +# Robin Appelman , 2012 +# Jan-Christoph Borchardt , 2011 +# ufic , 2011-2013 +# RColombo , 2011 +# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -28,12 +28,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Impossibile caricare l'elenco dall'App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Errore di autenticazione" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Impossibile cambiare il nome visualizzato" @@ -123,7 +127,7 @@ msgstr "Errore durante l'aggiornamento" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Salvataggio in corso..." @@ -139,16 +143,16 @@ msgstr "annulla" msgid "Unable to remove user" msgstr "Impossibile rimuovere l'utente" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Gruppi" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Gruppi amministrati" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Elimina" @@ -319,19 +323,19 @@ msgstr "Log" msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Più" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Meno" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versione" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 065218b575..680e483218 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-17 08:10+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,12 +26,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "アプリストアからリストをロードできません" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "認証エラー" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "表示名を変更できません" @@ -121,7 +125,7 @@ msgstr "アプリの更新中にエラーが発生" msgid "Updated" msgstr "更新済み" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "保存中..." @@ -137,16 +141,16 @@ msgstr "元に戻す" msgid "Unable to remove user" msgstr "ユーザを削除出来ません" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "グループ" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "グループ管理者" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "削除" @@ -325,11 +329,11 @@ msgstr "もっと見る" msgid "Less" msgstr "閉じる" -#: templates/admin.php:235 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "バージョン" -#: templates/admin.php:238 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 899e32ba84..7b4af5f134 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" -"PO-Revision-Date: 2013-04-21 18:40+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "აპლიკაციების სია ვერ ჩამოიტვირთა App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "ავთენტიფიკაციის შეცდომა" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "დისფლეის სახელის შეცვლა ვერ მოხერხდა" @@ -118,7 +122,7 @@ msgstr "შეცდომა აპლიკაციის განახლ msgid "Updated" msgstr "განახლებულია" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "შენახვა..." @@ -134,16 +138,16 @@ msgstr "დაბრუნება" msgid "Unable to remove user" msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "ჯგუფი" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "ჯგუფის ადმინისტრატორი" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "წაშლა" @@ -322,11 +326,11 @@ msgstr "უფრო მეტი" msgid "Less" msgstr "naklebi" -#: templates/admin.php:235 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:238 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 098a8eef8f..ad6bcf70a8 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# 남자사람 , 2012. -# Harim Park , 2013. -# , 2012. -# Shinjo Park , 2012-2013. +# aoiob4305 , 2013 +# 남자사람 , 2012 +# Harim Park , 2013 +# yunhye , 2012 +# Shinjo Park , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -26,12 +26,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "앱 스토어에서 목록을 가져올 수 없습니다" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "인증 오류" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -121,7 +125,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "저장 중..." @@ -137,16 +141,16 @@ msgstr "되돌리기" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "그룹" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "그룹 관리자" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "삭제" @@ -317,19 +321,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "더 중요함" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "버전" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index c657f9b728..6b80fc58f2 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011-2012. +# sim0n , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Konnt Lescht net vum App Store lueden" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -117,7 +121,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Speicheren..." @@ -133,16 +137,16 @@ msgstr "réckgängeg man" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Gruppen" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Gruppen Admin" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Läschen" @@ -313,19 +317,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 79929cea32..0be226771e 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dr. ROX , 2011, 2012. +# andrejuseu , 2012 +# Dr. ROX , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Neįmanoma įkelti sąrašo iš Programų Katalogo" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Autentikacijos klaida" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -118,7 +122,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Saugoma.." @@ -134,16 +138,16 @@ msgstr "anuliuoti" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupės" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Ištrinti" @@ -314,19 +318,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Daugiau" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index fd7f24987d..3cc0d71ce4 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# Rūdolfs Mazurs , 2013. +# CPDZ , 2012 +# elwins , 2012 +# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nevar lejupielādēt sarakstu no lietotņu veikala" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Autentifikācijas kļūda" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Nevarēja mainīt redzamo vārdu" @@ -119,7 +123,7 @@ msgstr "Kļūda, atjauninot lietotni" msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Saglabā..." @@ -135,16 +139,16 @@ msgstr "atsaukt" msgid "Unable to remove user" msgstr "Nevar izņemt lietotāju" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupas" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupas administrators" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Dzēst" @@ -315,19 +319,19 @@ msgstr "Žurnāls" msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Vairāk" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versija" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 6294b438af..1db983b0ea 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. -# Miroslav Jovanovic , 2012. -# Miroslav Jovanovic , 2012. +# Georgi Stanojevski , 2012 +# Miroslav Jovanovic , 2012 +# Miroslav Jovanovic , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Неможам да вчитам листа од App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Грешка во автентикација" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -119,7 +123,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Снимам..." @@ -135,16 +139,16 @@ msgstr "врати" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Групи" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Администратор на група" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Избриши" @@ -315,19 +319,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Повеќе" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Помалку" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Верзија" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 53d5141ad2..d2639ab24a 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmed Noor Kader Mustajir Md Eusoff , 2012. -# , 2011, 2012. -# Hadri Hilmi , 2012. -# Zulhilmi Rosnin , 2012. +# Ahmed Noor Kader Mustajir Md Eusoff , 2012 +# Hadri Hilmi , 2011, 2012 +# Hadri Hilmi , 2012 +# Zulhilmi Rosnin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -25,12 +25,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Ralat pengesahan" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -120,7 +124,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Simpan..." @@ -136,16 +140,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Kumpulan" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Padam" @@ -316,19 +320,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "ခွင့်ပြုချက်မအောင်မြင်" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 4f57396323..59baf0b354 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. -# Arvid Nornes , 2012. -# Christer Eriksson , 2012. -# Daniel , 2012. -# , 2012. -# , 2012. -# , 2012. -# , 2012. +# anjar , 2011 +# Arvid Nornes , 2012 +# Christer Eriksson , 2012 +# Daniel , 2012 +# espenbye , 2012 +# hdalgrav , 2012 +# owncloud , 2012 +# runesudden , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -29,12 +29,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Lasting av liste fra App Store feilet." -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Autentikasjonsfeil" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -124,7 +128,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Lagrer..." @@ -140,16 +144,16 @@ msgstr "angre" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupper" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Gruppeadministrator" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Slett" @@ -320,19 +324,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mer" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Mindre" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versjon" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 34b223ac45..3c8bb3340a 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -3,24 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012-2013. -# , 2011. -# , 2012. -# , 2012. -# Erik Bent , 2012. -# , 2011, 2012. -# , 2012. -# , 2011. -# , 2012. -# , 2012. -# Richard Bos , 2012. -# Wilfred Dijksman , 2013. +# André Koot , 2012-2013 +# isama , 2011 +# Bramdv , 2012 +# diederikdehaas , 2012 +# Erik Bent , 2012 +# Robin Appelman , 2011, 2012 +# jgelauff , 2012 +# koenvervloesem , 2011 +# Len , 2012 +# Pietje8501 , 2012 +# Richard Bos , 2012 +# Wilfred Dijksman , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -33,12 +33,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kan de lijst niet van de App store laden" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Authenticatie fout" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Kon de weergavenaam niet wijzigen" @@ -128,7 +132,7 @@ msgstr "Fout bij bijwerken app" msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Aan het bewaren....." @@ -144,16 +148,16 @@ msgstr "ongedaan maken" msgid "Unable to remove user" msgstr "Kon gebruiker niet verwijderen" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Groepen" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Groep beheerder" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "verwijderen" @@ -324,19 +328,19 @@ msgstr "Log" msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Meer" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Minder" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versie" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the , 2012. -# , 2011. +# erviker , 2012 +# , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Klarer ikkje å laste inn liste fra App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Feil i autentisering" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -118,7 +122,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -134,16 +138,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupper" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Slett" @@ -314,19 +318,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index df9e092959..c107e54ecc 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# tartafione , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Pas possible de cargar la tièra dempuèi App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Error d'autentificacion" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -117,7 +121,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Enregistra..." @@ -133,16 +137,16 @@ msgstr "defar" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grops" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grop Admin" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Escafa" @@ -313,19 +317,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index ff5ed02f9b..0ed9670821 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -3,26 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Bartek Krawczyk , 2013. -# Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012-2013. -# , 2012. -# Kamil Domański , 2011. -# Maciej Tarmas , 2013. -# Marcin Małecki , 2011, 2012. -# Marcin Małecki , 2011. -# Michał Plichta , 2013. -# , 2011. -# , 2012. -# Piotr Sokół , 2012. -# , 2012. +# b13n1u , 2013 +# bbartlomiej , 2013 +# Cyryl Sochacki , 2012 +# Cyryl Sochacki , 2012-2013 +# Robin Appelman , 2012 +# Kamil Domański , 2011 +# Maciej Tarmas , 2013 +# Marcin Małecki , 2011, 2012 +# Marcin Małecki , 2011 +# emc , 2013 +# , 2011 +# emc , 2012 +# Piotr Sokół , 2012 +# Thomasso , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -35,12 +35,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nie można wczytać listy aplikacji" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Błąd uwierzytelniania" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Nie można zmienić wyświetlanej nazwy" @@ -130,7 +134,7 @@ msgstr "Błąd podczas aktualizacji aplikacji" msgid "Updated" msgstr "Zaktualizowano" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Zapisywanie..." @@ -146,16 +150,16 @@ msgstr "cofnij" msgid "Unable to remove user" msgstr "Nie można usunąć użytkownika" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupy" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Administrator grupy" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Usuń" @@ -326,19 +330,19 @@ msgstr "Logi" msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Więcej" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Mniej" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Wersja" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index c7c53c3952..a71f4f3624 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -3,23 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. -# Frederico Freire Boaventura , 2013. -# , 2012. -# Guilherme Maluf Balzana , 2012. -# , 2012. -# Rodrigo Tavares , 2013. -# Sandro Venezuela , 2012. -# , 2012. -# Thiago Vicente , 2012. -# , 2012. -# Van Der Fran , 2011. +# dudanogueira , 2011 +# fboaventura , 2013 +# FredMaranhao , 2012 +# Guilherme Maluf Balzana , 2012 +# sedir , 2012 +# Rodrigo Tavares , 2013 +# Sandro Venezuela , 2012 +# targinosilveira , 2012 +# Thiago Vicente , 2012 +# thoriumbr , 2012 +# Van Der Fran , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -32,12 +32,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Não foi possível carregar lista da App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Erro de autenticação" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Impossível alterar nome de exibição" @@ -127,7 +131,7 @@ msgstr "Erro ao atualizar aplicativo" msgid "Updated" msgstr "Atualizado" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Guardando..." @@ -143,16 +147,16 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Impossível remover usuário" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupos" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupo Administrativo" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Excluir" @@ -323,19 +327,19 @@ msgstr "Registro" msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mais" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Menos" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versão" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index a0be25c84b..6465190461 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Daniel Pinto , 2013. -# , 2013. -# Duarte Velez Grilo , 2012-2013. -# , 2012. -# Helder Meneses , 2012-2013. -# Miguel Sousa , 2013. -# , 2012. +# Mouxy , 2012 +# Mouxy , 2013 +# Duarte Velez Grilo , 2013 +# Duarte Velez Grilo , 2012-2013 +# rlameiro , 2012 +# Helder Meneses , 2012-2013 +# Miguel Sousa , 2013 +# rjgpp1994 , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -29,12 +29,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Incapaz de carregar a lista da App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Erro de autenticação" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Não foi possível alterar o nome" @@ -124,7 +128,7 @@ msgstr "Erro enquanto actualizava a aplicação" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "A guardar..." @@ -140,16 +144,16 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Não foi possível remover o utilizador" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupos" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Apagar" @@ -320,19 +324,19 @@ msgstr "Registo" msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mais" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Menos" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versão" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the , 2012 # g.ciprian , 2012 # laurentiucristescu , 2012 +# ripkid666 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 14:30+0000\n" +"Last-Translator: ripkid666 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +59,7 @@ msgstr "Nici o categorie de adăugat?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Această categorie deja există: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -261,7 +262,7 @@ msgstr "Fișierul obligatoriu {file} nu este instalat!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Partajat" #: js/share.js:90 msgid "Share" @@ -388,11 +389,11 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Modernizarea a eșuat! Te rugam sa raportezi problema aici.." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Modernizare reusita! Vei fii redirectionat!" #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -482,11 +483,11 @@ msgstr "Avertisment de securitate" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Versiunea dvs. PHP este vulnerabil la acest atac un octet null (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Vă rugăm să actualizați instalarea dvs. PHP pentru a utiliza ownCloud in siguranță." #: templates/installation.php:32 msgid "" @@ -504,14 +505,14 @@ msgstr "Fara generatorul pentru numere de securitate , un atacator poate afla pa msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Directorul de date și fișiere sunt, probabil, accesibile de pe Internet, deoarece .htaccess nu funcționează." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Pentru informatii despre configurarea corecta a serverului accesati pagina Documentare." #: templates/installation.php:44 msgid "Create an admin account" @@ -595,7 +596,7 @@ msgstr "Autentificare" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "" +msgstr "Conectări alternative" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 583c25dfe3..1732239883 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"PO-Revision-Date: 2013-04-25 23:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 352b71c0b7..88ba2d8cfd 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -5,13 +5,14 @@ # Translators: # Dimon Pockemon <>, 2013 # g.ciprian , 2012 +# ripkid666 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"PO-Revision-Date: 2013-04-25 14:30+0000\n" +"Last-Translator: ripkid666 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +58,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Atentie: Suportul Curl nu este pornit / instalat in configuratia PHP! Montarea ownCloud / WebDAV / GoogleDrive nu este posibila! Intrebati administratorul sistemului despre aceasta problema!" #: templates/settings.php:3 msgid "External Storage" @@ -69,7 +70,7 @@ msgstr "Denumire director" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Stocare externă" #: templates/settings.php:11 msgid "Configuration" @@ -85,7 +86,7 @@ msgstr "Aplicabil" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Adauga stocare" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 0648c9a78c..44a5bd45f2 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# g.ciprian , 2012 +# ripkid666 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 13:50+0000\n" +"Last-Translator: ripkid666 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,38 +22,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Nu a putut reveni: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "success" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Fisierul %s a revenit la versiunea %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "eșec" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "Fisierele %s nu au putut reveni la versiunea %s" #: history.php:69 msgid "No old versions available" -msgstr "" +msgstr "Versiunile vechi nu sunt disponibile" #: history.php:74 msgid "No path specified" -msgstr "" +msgstr "Nici un dosar specificat" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versiuni" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "Readuceti un fișier la o versiune anterioară, făcând clic pe butonul revenire" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 942cb3c8ed..4108879435 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu , 2011, 2012. -# Dimon Pockemon <>, 2012. -# Dumitru Ursu <>, 2013. -# Eugen Mihalache , 2012. -# , 2012-2013. -# , 2012. -# , 2012. +# Claudiu , 2011, 2012 +# Dimon Pockemon <>, 2012 +# Dimon Pockemon <>, 2013 +# Eugen Mihalache , 2012 +# g.ciprian , 2012-2013 +# Robin Appelman , 2012 +# iuranemo , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -28,12 +28,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposibil de încărcat lista din App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Eroare de autentificare" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -123,7 +127,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Salvez..." @@ -139,16 +143,16 @@ msgstr "Anulează ultima acțiune" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupuri" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupul Admin " -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Șterge" @@ -319,19 +323,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mai mult" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the , 2012 # Nick Remeslennikov , 2012 # sam002 , 2012 +# eurekafag , 2013 # m4rkell , 2013 # adol , 2013 # skoptev , 2012 @@ -21,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"Last-Translator: eurekafag \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -146,7 +147,7 @@ msgstr "загружается 1 файл" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "файлы загружаются" #: js/files.js:52 msgid "'.' is an invalid file name." diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index c066f57cdf..fc72612e75 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -5,15 +5,16 @@ # Translators: # Denis , 2012 # sam002 , 2012 +# eurekafag , 2013 # skoptev , 2012 # Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"PO-Revision-Date: 2013-04-25 15:30+0000\n" +"Last-Translator: eurekafag \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,7 +60,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Внимание: Поддержка Curl в PHP не включена или не установлена. Подключение ownCloud / WebDAV или GoogleDrive невозможно. Попросите вашего системного администратора установить его." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 2b06278427..610387759c 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -3,27 +3,27 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012. -# , 2012. -# , 2012. -# , 2012. -# Nick Remeslennikov , 2012. -# , 2012. -# , 2012. -# Sergey , 2013. -# , 2012-2013. -# , 2012. -# , 2011. -# Victor Ashirov , 2013. -# Victor Bravo <>, 2012. -# , 2012. -# Дмитрий , 2013. +# Denis , 2012 +# Robin Appelman , 2012 +# jekader , 2012 +# Yaroslav Petrov , 2012 +# Nick Remeslennikov , 2012 +# rasperepodvipodvert , 2012 +# sam002 , 2012 +# m4rkell , 2013 +# adol , 2012-2013 +# skoptev , 2012 +# tonymc , 2011 +# unixoid , 2013 +# Victor Bravo <>, 2012 +# VicDeo , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -36,12 +36,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Загрузка из App Store запрещена" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Ошибка авторизации" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Невозможно изменить отображаемое имя" @@ -131,7 +135,7 @@ msgstr "Ошибка в процессе обновления приложени msgid "Updated" msgstr "Обновлено" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Сохранение..." @@ -147,16 +151,16 @@ msgstr "отмена" msgid "Unable to remove user" msgstr "Невозможно удалить пользователя" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Группы" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Группа Администраторы" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Удалить" @@ -327,19 +331,19 @@ msgstr "Лог" msgid "Log level" msgstr "Уровень лога" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Больше" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Меньше" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Версия" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 09c56fb828..a0824e7ff8 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. +# AnnaSch , 2013 +# AnnaSch , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Невозможно загрузить список из App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Ошибка авторизации" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -118,7 +122,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Сохранение" @@ -134,16 +138,16 @@ msgstr "отменить действие" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Группы" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Группа Admin" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Удалить" @@ -314,19 +318,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Подробнее" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Меньше" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Версия" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index ecb6a7c40f..3cdd043744 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. -# Chamara Disanayake , 2012. -# , 2012. +# Anushke Guneratne , 2012 +# Chamara Disanayake , 2012 +# Thanoja , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "සත්‍යාපන දෝෂයක්" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -119,7 +123,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." @@ -135,16 +139,16 @@ msgstr "නිෂ්ප්‍රභ කරන්න" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "සමූහය" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "කාණ්ඩ පරිපාලක" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "මකා දමනවා" @@ -315,19 +319,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "වැඩි" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "අඩු" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 84eb780da7..103d1169b6 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011, 2012. -# Marián Hvolka , 2013. -# , 2012. -# Roman Priesol , 2012. -# , 2012. -# , 2012. +# intense , 2011, 2012 +# mhh , 2013 +# martinb , 2012 +# Roman Priesol , 2012 +# Typhoon , 2012 +# martin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nie je možné nahrať zoznam z App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Chyba pri autentifikácii" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Nemožno zmeniť zobrazované meno" @@ -122,7 +126,7 @@ msgstr "chyba pri aktualizácii aplikácie" msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Ukladám..." @@ -138,16 +142,16 @@ msgstr "vrátiť" msgid "Unable to remove user" msgstr "Nemožno odobrať používateľa" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Skupiny" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Správca skupiny" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Odstrániť" @@ -318,19 +322,19 @@ msgstr "Záznam" msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Viac" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Menej" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Verzia" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 957fabe747..4d90df69ff 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2013. -# <>, 2012. -# Matej Urbančič <>, 2013. -# , 2012. -# Peter Peroša , 2012-2013. -# , 2011, 2012. +# mateju <>, 2013 +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 +# Peter Peroša , 2012-2013 +# urossolar , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ni mogoče naložiti seznama iz središča App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Napaka overitve" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Prikazanega imena ni mogoče spremeniti." @@ -122,7 +126,7 @@ msgstr "Prišlo je do napake med posodabljanjem programa." msgid "Updated" msgstr "Posodobljeno" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Poteka shranjevanje ..." @@ -138,16 +142,16 @@ msgstr "razveljavi" msgid "Unable to remove user" msgstr "Uporabnika ni mogoče odstraniti" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Skupine" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Skrbnik skupine" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Izbriši" @@ -318,19 +322,19 @@ msgstr "Dnevnik" msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Več" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Manj" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Različica" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 0ea938feaf..eaad4534ed 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. +# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -117,7 +121,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -133,16 +137,16 @@ msgstr "anulo" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Elimino" @@ -313,19 +317,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 4faad27c2f..c41107dad6 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Slobodan Terzić , 2011, 2012. -# , 2013. +# Kostic , 2012 +# Slobodan Terzić , 2011, 2012 +# Rancher , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Грешка приликом учитавања списка из Складишта Програма" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Грешка при аутентификацији" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Не могу да променим име за приказ" @@ -119,7 +123,7 @@ msgstr "Грешка при ажурирању апликације" msgid "Updated" msgstr "Ажурирано" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Чување у току..." @@ -135,16 +139,16 @@ msgstr "опозови" msgid "Unable to remove user" msgstr "Не могу да уклоним корисника" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Групе" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Управник групе" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Обриши" @@ -315,19 +319,19 @@ msgstr "Бележење" msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Више" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Мање" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Верзија" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the , 2011. +# Slobodan Terzić , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Greška pri autentifikaciji" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -117,7 +121,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -133,16 +137,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupe" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Obriši" @@ -313,19 +317,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 78e13f62c2..cb9118bf97 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -3,21 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André , 2013. -# Christer Eriksson , 2012. -# Daniel Sandman , 2012. -# , 2011. -# Magnus Höglund , 2012-2013. -# , 2012. -# , 2012. -# , 2011, 2012. -# , 2012. +# Lokal_Profil , 2013 +# Christer Eriksson , 2012 +# Daniel Sandman , 2012 +# HakanS , 2011 +# Magnus Höglund , 2012-2013 +# Magnus Höglund , 2012 +# xt00r , 2012 +# Daniel Sandman , 2011, 2012 +# tscooter , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -30,12 +30,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kan inte ladda listan från App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Autentiseringsfel" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Kan inte ändra visningsnamn" @@ -125,7 +129,7 @@ msgstr "Fel uppstod vid uppdatering av appen" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Sparar..." @@ -141,16 +145,16 @@ msgstr "ångra" msgid "Unable to remove user" msgstr "Kan inte ta bort användare" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Grupper" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Gruppadministratör" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Radera" @@ -321,19 +325,19 @@ msgstr "Logg" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mer" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Mindre" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Version" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 7d988829d0..608c334d00 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "செயலி சேமிப்பிலிருந்து பட்டியலை ஏற்றமுடியாதுள்ளது" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "அத்தாட்சிப்படுத்தலில் வழு" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -117,7 +121,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "இயலுமைப்படுத்துக" @@ -133,16 +137,16 @@ msgstr "முன் செயல் நீக்கம் " msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "குழுக்கள்" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "குழு நிர்வாகி" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "அழிக்க" @@ -313,19 +317,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the , 2013. +# వీవెన్ , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -117,7 +121,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -133,16 +137,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "తొలగించు" @@ -313,19 +317,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 53e5b411c3..33756ecac6 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index d3fcd8aefc..a44582dc6a 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 280b4fd24f..57abfd70eb 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 27a1b59adf..ed463f7043 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index cdd285eaa3..d519099182 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 2b4a81f05f..79d170d07b 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 9837948dd0..b17067ebad 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 3f3469d507..0748929501 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -320,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 929c4db848..f1b91293f0 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 62c22585f9..4fe226e8a6 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"PO-Revision-Date: 2013-04-25 23:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index c239256ebe..5bb0806de2 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013. -# AriesAnywhere Anywhere , 2012. -# , 2012. +# AriesAnywhere Anywhere , 2012-2013 +# AriesAnywhere Anywhere , 2012 +# Robin Appelman , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ไม่สามารถโหลดรายการจาก App Store ได้" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -119,7 +123,7 @@ msgstr "เกิดข้อผิดพลาดในระหว่างก msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "กำลังบันทึุกข้อมูล..." @@ -135,16 +139,16 @@ msgstr "เลิกทำ" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "กลุ่ม" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "ผู้ดูแลกลุ่ม" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "ลบ" @@ -315,19 +319,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "มาก" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "น้อย" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 86e9e92833..1523631947 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -3,21 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Aranel Surion , 2011-2013. -# Caner Başaran , 2013. -# Emre , 2012. -# Fatih Aşıcı , 2013. -# H.Oktay Tefenli , 2013. -# , 2012. -# ismail yenigul , 2013. -# Necdet Yücel , 2012. -# Tolga Gezginiş , 2013. +# Aranel Surion , 2011-2013 +# Caner Başaran , 2013 +# Emre Saraçoğlu , 2012 +# Fatih Aşıcı , 2013 +# otefenli , 2013 +# alpere , 2012 +# ismail yenigül , 2013 +# Necdet Yücel , 2012 +# tgezginis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -30,12 +30,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "App Store'dan liste yüklenemiyor" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Eşleşme hata" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Ekran adı değiştirilemiyor" @@ -125,7 +129,7 @@ msgstr "Uygulama güncellenirken hata" msgid "Updated" msgstr "Güncellendi" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Kaydediliyor..." @@ -141,16 +145,16 @@ msgstr "geri al" msgid "Unable to remove user" msgstr "Kullanıcı kaldırılamıyor" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Gruplar" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Yönetici Grubu " -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Sil" @@ -321,19 +325,19 @@ msgstr "Kayıtlar" msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Az" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -26,19 +26,19 @@ msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Uyunlama mantikli ve baglama yerlestirmek edebilmi." #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "Uyunlama gecerli, fakat Baglama yapamadi. Lutfen kontrol yapmak, eger bu iyi yerlertirdi. " #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "Uyunma mantikli degil. Lutfen log daha kontrol yapmak. " #: js/settings.js:66 msgid "Deletion failed" @@ -46,7 +46,7 @@ msgstr "Silme başarısız oldu" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Parametri sonadan uyunlama cikarmak mi?" #: js/settings.js:83 msgid "Keep settings?" @@ -54,7 +54,7 @@ msgstr "Ayarları kalsınmı?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Sunucu uyunlama birlemek edemen. " #: js/settings.js:121 msgid "Connection test succeeded" @@ -66,7 +66,7 @@ msgstr "Bağlantı testi başarısız oldu" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Hakikatten, Sonuncu Funksyon durmak istiyor mi?" #: js/settings.js:137 msgid "Confirm Deletion" @@ -83,7 +83,7 @@ msgstr "Uyari Apps kullanici_Idap ve user_webdavauth uyunmayan. Bu belki msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Ihbar Modulu PHP LDAP yuklemdi degil, backend calismacak. Lutfen sistem yonetici sormak yuklemek icin." #: templates/settings.php:15 msgid "Server configuration" @@ -108,7 +108,7 @@ msgstr "Ana DN" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "Bir Tabani DN herbir dizi. " #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -287,7 +287,7 @@ msgstr "Temel Grup Ağacı" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "" +msgstr "Bir Grubu Tabani DN her dizgi. " #: templates/settings.php:87 msgid "Group Search Attributes" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 659dfb1d2a..f7e6f0353c 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"PO-Revision-Date: 2013-04-25 23:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 01c6e47b02..2c1bf343b9 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# , 2012-2013. -# пан Володимир , 2013. +# Dmytro Dzubenko , 2012 +# skoptev , 2012 +# volodya327 , 2012-2013 +# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -25,12 +25,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Не вдалося завантажити список з App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Помилка автентифікації" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Не вдалося змінити зображене ім'я" @@ -120,7 +124,7 @@ msgstr "Помилка при оновленні програми" msgid "Updated" msgstr "Оновлено" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Зберігаю..." @@ -136,16 +140,16 @@ msgstr "відмінити" msgid "Unable to remove user" msgstr "Неможливо видалити користувача" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Групи" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Адміністратор групи" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Видалити" @@ -316,19 +320,19 @@ msgstr "Протокол" msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Більше" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "Менше" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Версія" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 649183dcf9..1072b980fa 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# , 2012. -# sao sang , 2013. -# Son Nguyen , 2012. -# Sơn Nguyễn , 2012. -# , 2012. +# khanhnd , 2012 +# mattheu_9x , 2012 +# mattheu_9x , 2012 +# saosangm , 2013 +# Sơn Nguyễn , 2012 +# Sơn Nguyễn , 2012 +# vlinhd11 , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -28,12 +28,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Không thể tải danh sách ứng dụng từ App Store" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "Lỗi xác thực" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "Không thể thay đổi tên hiển thị" @@ -123,7 +127,7 @@ msgstr "Lỗi khi cập nhật ứng dụng" msgid "Updated" msgstr "Đã cập nhật" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "Đang tiến hành lưu ..." @@ -139,16 +143,16 @@ msgstr "lùi lại" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "Nhóm" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Nhóm quản trị" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "Xóa" @@ -319,19 +323,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "hơn" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "ít" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index a259a909f5..a3fb6e17b9 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# HO Gin Wang , 2013. -# marguerite su , 2012. +# bluehattree , 2012 +# kopisee , 2013 +# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "不能从App Store 中加载列表" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "认证错误" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "无法更改显示名称" @@ -119,7 +123,7 @@ msgstr "应用升级时出现错误" msgid "Updated" msgstr "已升级" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "保存中..." @@ -135,16 +139,16 @@ msgstr "撤销" msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "组" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "群组管理员" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "删除" @@ -315,19 +319,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "更多" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "更少" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "版本" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index b00faa27fa..506620d707 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# CyberCowBoy , 2013. -# Dianjin Wang <1132321739qq@gmail.com>, 2012-2013. -# Phoenix Nemo <>, 2012. -# , 2012. -# , 2012. -# , 2013. -# , 2011, 2012. +# hanfeng , 2012 +# ccb , 2013 +# Dianjin Wang <1132321739qq@gmail.com>, 2012-2013 +# Phoenix Nemo <>, 2012 +# leonfeng , 2012 +# waterone , 2012 +# Xuetian Weng , 2013 +# Xuetian Weng , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:21+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -29,12 +29,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "无法从应用商店载入列表" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "认证错误" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "无法修改显示名称" @@ -124,7 +128,7 @@ msgstr "更新 app 时出错" msgid "Updated" msgstr "已更新" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "正在保存" @@ -140,16 +144,16 @@ msgstr "撤销" msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "组" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "组管理员" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "删除" @@ -320,19 +324,19 @@ msgstr "日志" msgid "Log level" msgstr "日志级别" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "更多" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "更少" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "版本" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -21,12 +21,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "" @@ -116,7 +120,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "" @@ -132,16 +136,16 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "群組" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "刪除" @@ -312,19 +316,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Less" msgstr "" -#: templates/admin.php:231 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "" -#: templates/admin.php:234 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 23cc130ca4..d4ae50e33b 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" -"PO-Revision-Date: 2013-04-19 09:00+0000\n" +"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"PO-Revision-Date: 2013-04-25 23:56+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -32,12 +32,16 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "無法從 App Store 讀取清單" -#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" msgstr "認證錯誤" -#: ajax/changedisplayname.php:32 +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 msgid "Unable to change display name" msgstr "無法更改顯示名稱" @@ -127,7 +131,7 @@ msgstr "更新應用程式錯誤" msgid "Updated" msgstr "已更新" -#: js/personal.js:109 +#: js/personal.js:115 msgid "Saving..." msgstr "儲存中..." @@ -143,16 +147,16 @@ msgstr "復原" msgid "Unable to remove user" msgstr "無法刪除用戶" -#: js/users.js:88 templates/users.php:26 templates/users.php:80 -#: templates/users.php:105 +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 msgid "Groups" msgstr "群組" -#: js/users.js:91 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "群組 管理員" -#: js/users.js:111 templates/users.php:161 +#: js/users.js:111 templates/users.php:155 msgid "Delete" msgstr "刪除" @@ -331,11 +335,11 @@ msgstr "更多" msgid "Less" msgstr "少" -#: templates/admin.php:235 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:100 msgid "Version" msgstr "版本" -#: templates/admin.php:238 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:103 msgid "" "Developed by the ownCloud community, the "كلمات سر جديدة", "Change password" => "عدل كلمة السر", "Display Name" => "اسم الحساب", -"Your display name was changed" => "تم تغيير اسم حسابك بنجاح", -"Unable to change your display name" => "تعذر تغيير اسم حسابك", -"Change display name" => "تغيير اسم الحساب", "Email" => "العنوان البريدي", "Your email address" => "عنوانك البريدي", "Fill in an email address to enable password recovery" => "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 6fd19a6c88..860006fc39 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -91,9 +91,6 @@ "New password" => "Contrasenya nova", "Change password" => "Canvia la contrasenya", "Display Name" => "Nom a mostrar", -"Your display name was changed" => "El vostre nom a mostrar ha canviat", -"Unable to change your display name" => "No s'ha pogut canviar el vostre nom a mostrar", -"Change display name" => "Canvia el nom a mostrar", "Email" => "Correu electrònic", "Your email address" => "Correu electrònic", "Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 6e9d4e884d..246b393371 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -91,9 +91,6 @@ "New password" => "Nové heslo", "Change password" => "Změnit heslo", "Display Name" => "Zobrazované jméno", -"Your display name was changed" => "Vaše zobrazované jméno bylo změněno", -"Unable to change your display name" => "Nelze změnit vaše zobrazované jméno", -"Change display name" => "Změnit zobrazované jméno", "Email" => "E-mail", "Your email address" => "Vaše e-mailová adresa", "Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index e74bf16fd5..5a710017ea 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -91,9 +91,6 @@ "New password" => "Ny adgangskode", "Change password" => "Skift kodeord", "Display Name" => "Skærmnavn", -"Your display name was changed" => "Dit skærmnavn blev ændret", -"Unable to change your display name" => "Kunne ikke skifte dit skærmnavn", -"Change display name" => "Skift skærmnavn", "Email" => "Email", "Your email address" => "Din emailadresse", "Fill in an email address to enable password recovery" => "Indtast en emailadresse for at kunne få påmindelse om adgangskode", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 1ff3e45f69..72ba4f30f9 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -91,9 +91,6 @@ "New password" => "Neues Passwort", "Change password" => "Passwort ändern", "Display Name" => "Anzeigename", -"Your display name was changed" => "Dein Anzeigename wurde geändert", -"Unable to change your display name" => "Das Ändern deines Anzeigenamens ist nicht möglich", -"Change display name" => "Anzeigenamen ändern", "Email" => "E-Mail", "Your email address" => "Deine E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index b1f121aa97..99c6707a3a 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -91,9 +91,6 @@ "New password" => "Neues Passwort", "Change password" => "Passwort ändern", "Display Name" => "Anzeigename", -"Your display name was changed" => "Ihr Anzeigename wurde geändert", -"Unable to change your display name" => "Das Ändern Ihres Anzeigenamens ist nicht möglich", -"Change display name" => "Anzeigenamen ändern", "Email" => "E-Mail", "Your email address" => "Ihre E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 9dfe20ae28..6e3568618d 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -91,9 +91,6 @@ "New password" => "Νέο συνθηματικό", "Change password" => "Αλλαγή συνθηματικού", "Display Name" => "Όνομα εμφάνισης", -"Your display name was changed" => "Το όνομα εμφάνισής σας άλλαξε", -"Unable to change your display name" => "Δεν ήταν δυνατή η αλλαγή του ονόματος εμφάνισής σας", -"Change display name" => "Αλλαγή ονόματος εμφάνισης", "Email" => "Email", "Your email address" => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας", "Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index a1d03ae840..700e9101f7 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -91,9 +91,6 @@ "New password" => "Nueva contraseña:", "Change password" => "Cambiar contraseña", "Display Name" => "Nombre a mostrar", -"Your display name was changed" => "Su nombre fue cambiado", -"Unable to change your display name" => "Incapaz de cambiar su nombre", -"Change display name" => "Cambiar nombre", "Email" => "Correo electrónico", "Your email address" => "Tu dirección de correo", "Fill in an email address to enable password recovery" => "Escribe una dirección de correo electrónico para restablecer la contraseña", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index a1be54be1c..a5296307c0 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -91,9 +91,6 @@ "New password" => "Nueva contraseña:", "Change password" => "Cambiar contraseña", "Display Name" => "Nombre a mostrar", -"Your display name was changed" => "El nombre mostrado fue cambiado", -"Unable to change your display name" => "No fue posible cambiar tu nombre", -"Change display name" => "Cambiar nombre", "Email" => "Correo electrónico", "Your email address" => "Tu dirección de e-mail", "Fill in an email address to enable password recovery" => "Escribí una dirección de correo electrónico para restablecer la contraseña", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index b21b55f5ca..746d055223 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -91,9 +91,6 @@ "New password" => "Uus parool", "Change password" => "Muuda parooli", "Display Name" => "Näidatav nimi", -"Your display name was changed" => "Sinu kuvatav nimi muutus", -"Unable to change your display name" => "Ei suuda muuta kuvatavat nime", -"Change display name" => "Muuda näidatavat nime", "Email" => "E-post", "Your email address" => "Sinu e-posti aadress", "Fill in an email address to enable password recovery" => "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index ed3500c5b7..d44592ced3 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -91,9 +91,6 @@ "New password" => "Pasahitz berria", "Change password" => "Aldatu pasahitza", "Display Name" => "Bistaratze Izena", -"Your display name was changed" => "Zure bistaratze izena aldatu da", -"Unable to change your display name" => "Ezin izan da zure bistaratze izena aldatu", -"Change display name" => "Aldatu bistaratze izena", "Email" => "E-Posta", "Your email address" => "Zure e-posta", "Fill in an email address to enable password recovery" => "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 8a097d64b0..ff3d0d4f31 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -84,9 +84,6 @@ "New password" => "گذرواژه جدید", "Change password" => "تغییر گذر واژه", "Display Name" => "نام نمایشی", -"Your display name was changed" => "نام نمایشی شما تغییر یافت", -"Unable to change your display name" => "امکان تغییر نام نمایشی شما وجود ندارد", -"Change display name" => "تغییر نام نمایشی", "Email" => "پست الکترونیکی", "Your email address" => "پست الکترونیکی شما", "Fill in an email address to enable password recovery" => "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 74a8157a7f..7b12c50ad3 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -78,9 +78,6 @@ "New password" => "Uusi salasana", "Change password" => "Vaihda salasana", "Display Name" => "Näyttönimi", -"Your display name was changed" => "Näyttönimesi muutettiin", -"Unable to change your display name" => "Näyttönimen muuttaminen epäonnistui", -"Change display name" => "Muuta näyttönimeä", "Email" => "Sähköposti", "Your email address" => "Sähköpostiosoitteesi", "Fill in an email address to enable password recovery" => "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index efc2de893d..fb9bfa1f5b 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -91,9 +91,6 @@ "New password" => "Nouveau mot de passe", "Change password" => "Changer de mot de passe", "Display Name" => "Nom affiché", -"Your display name was changed" => "Votre nom d'affichage a bien été modifié", -"Unable to change your display name" => "Impossible de modifier votre nom d'affichage", -"Change display name" => "Changer le nom affiché", "Email" => "E-mail", "Your email address" => "Votre adresse e-mail", "Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index f7472fd872..83bc3489aa 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -91,9 +91,6 @@ "New password" => "Novo contrasinal", "Change password" => "Cambiar o contrasinal", "Display Name" => "Amosar o nome", -"Your display name was changed" => "O seu nome visíbel foi cambiado", -"Unable to change your display name" => "Non é posíbel cambiar o seu nome visíbel", -"Change display name" => "Cambiar o nome visíbel", "Email" => "Correo", "Your email address" => "O seu enderezo de correo", "Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar a recuperación do contrasinal", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index a91e8ff491..880ffa48c6 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -91,9 +91,6 @@ "New password" => "Az új jelszó", "Change password" => "A jelszó megváltoztatása", "Display Name" => "A megjelenített név", -"Your display name was changed" => "Az Ön megjelenítési neve megváltozott", -"Unable to change your display name" => "Nem sikerült megváltoztatni az Ön megjelenítési nevét", -"Change display name" => "A megjelenítési név módosítása", "Email" => "Email", "Your email address" => "Az Ön email címe", "Fill in an email address to enable password recovery" => "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 2943e78a97..eacc3b953f 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -91,9 +91,6 @@ "New password" => "Sandi baru", "Change password" => "Ubah sandi", "Display Name" => "Nama Tampilan", -"Your display name was changed" => "Nama tampilan Anda telah diubah", -"Unable to change your display name" => "Tidak dapat mengubah nama tampilan Anda", -"Change display name" => "Ubah nama tampilan", "Email" => "Email", "Your email address" => "Alamat email Anda", "Fill in an email address to enable password recovery" => "Masukkan alamat email untuk mengaktifkan pemulihan sandi", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index c48db84b1e..054b07514e 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -91,9 +91,6 @@ "New password" => "Nuova password", "Change password" => "Modifica password", "Display Name" => "Nome visualizzato", -"Your display name was changed" => "Il tuo nome visualizzato è stato cambiato", -"Unable to change your display name" => "Impossibile cambiare il tuo nome visualizzato", -"Change display name" => "Cambia il nome visualizzato", "Email" => "Email", "Your email address" => "Il tuo indirizzo email", "Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index c5aa0ddec7..3694852a08 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -91,9 +91,6 @@ "New password" => "新しいパスワード", "Change password" => "パスワードを変更", "Display Name" => "表示名", -"Your display name was changed" => "あなたの表示名を変更しました", -"Unable to change your display name" => "あなたの表示名を変更できません", -"Change display name" => "表示名を変更", "Email" => "Email", "Your email address" => "あなたのメールアドレス", "Fill in an email address to enable password recovery" => "※パスワード回復を有効にするにはメールアドレスの入力が必要です", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 09de18ae1c..ab9fc83b4c 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -91,9 +91,6 @@ "New password" => "ახალი პაროლი", "Change password" => "პაროლის შეცვლა", "Display Name" => "დისპლეის სახელი", -"Your display name was changed" => "დისფლეის სახელი შეიცვალა", -"Unable to change your display name" => "თქვენი დისფლეის სახელის შეცვლა ვერ მოხერხდა", -"Change display name" => "დისფლეის სახელის შეცვლა", "Email" => "იმეილი", "Your email address" => "თქვენი იმეილ მისამართი", "Fill in an email address to enable password recovery" => "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index f5fd8b76bc..836a1b10d6 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -91,9 +91,6 @@ "New password" => "Jauna parole", "Change password" => "Mainīt paroli", "Display Name" => "Redzamais vārds", -"Your display name was changed" => "Jūsu redzamais vārds tika mainīts", -"Unable to change your display name" => "Nevarēja mainīt jūsu redzamo vārdu", -"Change display name" => "Mainīt redzamo vārdu", "Email" => "E-pasts", "Your email address" => "Jūsu e-pasta adrese", "Fill in an email address to enable password recovery" => "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 26a0773e7b..2435b87b18 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -91,9 +91,6 @@ "New password" => "Nieuw wachtwoord", "Change password" => "Wijzig wachtwoord", "Display Name" => "Weergavenaam", -"Your display name was changed" => "Uw weergavenaam is gewijzigd", -"Unable to change your display name" => "Kon de weergavenaam niet wijzigen", -"Change display name" => "Wijzig weergavenaam", "Email" => "E-mailadres", "Your email address" => "Uw e-mailadres", "Fill in an email address to enable password recovery" => "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 664d46ea3a..9cd1d4ee4f 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -91,9 +91,6 @@ "New password" => "Nowe hasło", "Change password" => "Zmień hasło", "Display Name" => "Wyświetlana nazwa", -"Your display name was changed" => "Twoja nazwa wyświetlana została zmieniona", -"Unable to change your display name" => "Nie można zmienić twojej wyświetlanej nazwy", -"Change display name" => "Zmień wyświetlaną nazwę", "Email" => "E-mail", "Your email address" => "Twój adres e-mail", "Fill in an email address to enable password recovery" => "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 040afa84de..942a3a596e 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -91,9 +91,6 @@ "New password" => "Nova senha", "Change password" => "Alterar senha", "Display Name" => "Nome de Exibição", -"Your display name was changed" => "Seu nome de exibição foi alterado", -"Unable to change your display name" => "Impossível alterar seu nome de exibição", -"Change display name" => "Alterar nome de exibição", "Email" => "E-mail", "Your email address" => "Seu endereço de e-mail", "Fill in an email address to enable password recovery" => "Preencha um endereço de e-mail para habilitar a recuperação de senha", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index b6538fbdd1..6fc2fd8b07 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -91,9 +91,6 @@ "New password" => "Nova palavra-chave", "Change password" => "Alterar palavra-chave", "Display Name" => "Nome público", -"Your display name was changed" => "O seu nome foi alterado", -"Unable to change your display name" => "Não foi possível alterar o seu nome", -"Change display name" => "Alterar nome", "Email" => "endereço de email", "Your email address" => "O seu endereço de email", "Fill in an email address to enable password recovery" => "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 3a0be05ba1..69e9ca23aa 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -91,9 +91,6 @@ "New password" => "Новый пароль", "Change password" => "Сменить пароль", "Display Name" => "Отображаемое имя", -"Your display name was changed" => "Ваше отображаемое имя было изменено", -"Unable to change your display name" => "Невозможно изменить Ваше отображаемое имя", -"Change display name" => "Изменить отображаемое имя", "Email" => "e-mail", "Your email address" => "Ваш адрес электронной почты", "Fill in an email address to enable password recovery" => "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 5b0b84f917..4e19b10597 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -91,9 +91,6 @@ "New password" => "Nové heslo", "Change password" => "Zmeniť heslo", "Display Name" => "Zobrazované meno", -"Your display name was changed" => "Vaše zobrazované meno bolo zmenené", -"Unable to change your display name" => "Nemožno zmeniť Vaše zobrazované meno", -"Change display name" => "Zmeniť zobrazované meno", "Email" => "Email", "Your email address" => "Vaša emailová adresa", "Fill in an email address to enable password recovery" => "Vyplňte emailovú adresu pre aktivovanie obnovy hesla", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 3ba3799a5d..b03364c59c 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -91,9 +91,6 @@ "New password" => "Novo geslo", "Change password" => "Spremeni geslo", "Display Name" => "Prikazano ime", -"Your display name was changed" => "Prikazano ime je spremenjeno.", -"Unable to change your display name" => "Prikazanega imena ni mogoče spremeniti.", -"Change display name" => "Spremeni prikazano ime", "Email" => "Elektronska pošta", "Your email address" => "Osebni elektronski naslov", "Fill in an email address to enable password recovery" => "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 86dc2a9272..e156388aad 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -85,9 +85,6 @@ "New password" => "Нова лозинка", "Change password" => "Измени лозинку", "Display Name" => "Име за приказ", -"Your display name was changed" => "Ваше име за приказ је промењено", -"Unable to change your display name" => "Не могу да променим ваше име за приказ", -"Change display name" => "Промени име за приказ", "Email" => "Е-пошта", "Your email address" => "Ваша адреса е-поште", "Fill in an email address to enable password recovery" => "Ун", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index ceff45a159..53bf366984 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -76,9 +76,6 @@ "New password" => "Nytt lösenord", "Change password" => "Ändra lösenord", "Display Name" => "Visat namn", -"Your display name was changed" => "Ditt visningsnamn har ändrats", -"Unable to change your display name" => "Kan inte ändra ditt visningsnamn", -"Change display name" => "Ändra visningsnamn", "Email" => "E-post", "Your email address" => "Din e-postadress", "Fill in an email address to enable password recovery" => "Fyll i en e-postadress för att aktivera återställning av lösenord", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 1bd9dc3dac..dfd3da6eca 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -91,9 +91,6 @@ "New password" => "Yeni parola", "Change password" => "Parola değiştir", "Display Name" => "Ekran Adı", -"Your display name was changed" => "Ekran adınız değiştirildi", -"Unable to change your display name" => "Ekran adınız değiştirilemiyor", -"Change display name" => "Ekran adını değiştir", "Email" => "Eposta", "Your email address" => "Eposta adresiniz", "Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 4618a86ceb..9557ca2442 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -91,9 +91,6 @@ "New password" => "Новий пароль", "Change password" => "Змінити пароль", "Display Name" => "Показати Ім'я", -"Your display name was changed" => "Ваше ім'я було змінене", -"Unable to change your display name" => "Неможливо змінити ваше зображене ім'я", -"Change display name" => "Змінити зображене ім'я", "Email" => "Ел.пошта", "Your email address" => "Ваша адреса електронної пошти", "Fill in an email address to enable password recovery" => "Введіть адресу електронної пошти для відновлення паролю", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 156aae50e3..0ae520f06e 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -58,9 +58,6 @@ "New password" => "Mật khẩu mới ", "Change password" => "Đổi mật khẩu", "Display Name" => "Tên hiển thị", -"Your display name was changed" => "Tên hiển thị của bạn đã được thay đổi", -"Unable to change your display name" => "Không thể thay đổi tên hiển thị của bạn", -"Change display name" => "Thay đổi tên hiển thị", "Email" => "Email", "Your email address" => "Email của bạn", "Fill in an email address to enable password recovery" => "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index e8b1527ef0..a911d75e3f 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -80,9 +80,6 @@ "New password" => "新密码", "Change password" => "改变密码", "Display Name" => "显示名称", -"Your display name was changed" => "您的显示名称已修改", -"Unable to change your display name" => "无法修改您的显示名称", -"Change display name" => "更改显示名称", "Email" => "Email", "Your email address" => "你的email地址", "Fill in an email address to enable password recovery" => "输入一个邮箱地址以激活密码恢复功能", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index b076044b82..a9d2c90753 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -91,9 +91,6 @@ "New password" => "新密码", "Change password" => "修改密码", "Display Name" => "显示名称", -"Your display name was changed" => "您的显示名称已修改", -"Unable to change your display name" => "无法修改您的显示名称", -"Change display name" => "修改显示名称", "Email" => "电子邮件", "Your email address" => "您的电子邮件", "Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复功能", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 5fb21bfe08..7bddc745bc 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -90,9 +90,6 @@ "New password" => "新密碼", "Change password" => "變更密碼", "Display Name" => "顯示名稱", -"Your display name was changed" => "已更改顯示名稱", -"Unable to change your display name" => "無法更改您的顯示名稱", -"Change display name" => "更改顯示名稱", "Email" => "電子郵件", "Your email address" => "您的電子郵件信箱", "Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", From 9fe3022c93f4aff7b8da8cc11494fa6d68f11f78 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Fri, 26 Apr 2013 09:59:00 +0200 Subject: [PATCH 54/55] adding resource type --- l10n/.tx/config | 3 +++ 1 file changed, 3 insertions(+) diff --git a/l10n/.tx/config b/l10n/.tx/config index b6589d8112..70ec332856 100644 --- a/l10n/.tx/config +++ b/l10n/.tx/config @@ -5,16 +5,19 @@ host = https://www.transifex.net file_filter = /core.po source_file = templates/core.pot source_lang = en +type = PO [owncloud.files] file_filter = /files.po source_file = templates/files.pot source_lang = en +type = PO [owncloud.settings] file_filter = /settings.po source_file = templates/settings.pot source_lang = en +type = PO [owncloud.lib] file_filter = /lib.po From d6978d0c455653370311dc7651a93878442c2498 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 26 Apr 2013 10:06:52 +0200 Subject: [PATCH 55/55] [tx-robot] updated from transifex --- l10n/af_ZA/core.po | 107 +++++---- l10n/af_ZA/files.po | 4 +- l10n/af_ZA/files_encryption.po | 4 +- l10n/af_ZA/files_external.po | 6 +- l10n/af_ZA/files_sharing.po | 8 +- l10n/af_ZA/files_trashbin.po | 4 +- l10n/af_ZA/files_versions.po | 4 +- l10n/af_ZA/lib.po | 58 ++--- l10n/af_ZA/settings.po | 8 +- l10n/af_ZA/user_ldap.po | 8 +- l10n/ar/core.po | 282 ++++++++++++------------ l10n/ar/files.po | 146 ++++++------- l10n/ar/files_encryption.po | 16 +- l10n/ar/files_external.po | 10 +- l10n/ar/files_sharing.po | 19 +- l10n/ar/files_trashbin.po | 37 ++-- l10n/ar/files_versions.po | 7 +- l10n/ar/lib.po | 161 +++++++------- l10n/ar/settings.po | 225 ++++++++++--------- l10n/ar/user_ldap.po | 10 +- l10n/be/core.po | 51 +++-- l10n/be/files.po | 4 +- l10n/be/files_encryption.po | 4 +- l10n/be/files_external.po | 4 +- l10n/be/files_sharing.po | 4 +- l10n/be/files_trashbin.po | 4 +- l10n/be/files_versions.po | 4 +- l10n/be/lib.po | 46 ++-- l10n/be/settings.po | 4 +- l10n/be/user_ldap.po | 4 +- l10n/bg_BG/core.po | 56 +++-- l10n/bg_BG/files.po | 70 +++--- l10n/bg_BG/files_encryption.po | 9 +- l10n/bg_BG/files_external.po | 37 ++-- l10n/bg_BG/files_sharing.po | 19 +- l10n/bg_BG/files_trashbin.po | 40 ++-- l10n/bg_BG/files_versions.po | 13 +- l10n/bg_BG/lib.po | 150 +++++++------ l10n/bg_BG/settings.po | 123 +++++------ l10n/bg_BG/user_ldap.po | 8 +- l10n/bn_BD/core.po | 254 +++++++++++----------- l10n/bn_BD/files.po | 129 ++++++----- l10n/bn_BD/files_encryption.po | 8 +- l10n/bn_BD/files_external.po | 40 ++-- l10n/bn_BD/files_sharing.po | 18 +- l10n/bn_BD/files_trashbin.po | 18 +- l10n/bn_BD/files_versions.po | 6 +- l10n/bn_BD/lib.po | 100 ++++----- l10n/bn_BD/settings.po | 127 ++++++----- l10n/bn_BD/user_ldap.po | 72 +++--- l10n/ca/core.po | 282 ++++++++++++------------ l10n/ca/files.po | 155 +++++++------ l10n/ca/files_encryption.po | 16 +- l10n/ca/files_external.po | 52 +++-- l10n/ca/files_sharing.po | 19 +- l10n/ca/files_trashbin.po | 37 ++-- l10n/ca/files_versions.po | 25 +-- l10n/ca/lib.po | 162 +++++++------- l10n/ca/settings.po | 226 ++++++++++--------- l10n/ca/user_ldap.po | 152 +++++++------ l10n/cs_CZ/core.po | 285 ++++++++++++------------ l10n/cs_CZ/files.po | 151 +++++++------ l10n/cs_CZ/files_encryption.po | 16 +- l10n/cs_CZ/files_external.po | 58 +++-- l10n/cs_CZ/files_sharing.po | 21 +- l10n/cs_CZ/files_trashbin.po | 37 ++-- l10n/cs_CZ/files_versions.po | 24 +- l10n/cs_CZ/lib.po | 112 +++++----- l10n/cs_CZ/settings.po | 226 ++++++++++--------- l10n/cs_CZ/user_ldap.po | 152 +++++++------ l10n/cy_GB/core.po | 281 ++++++++++++------------ l10n/cy_GB/files.po | 149 +++++++------ l10n/cy_GB/files_encryption.po | 4 +- l10n/cy_GB/files_external.po | 8 +- l10n/cy_GB/files_sharing.po | 21 +- l10n/cy_GB/files_trashbin.po | 39 ++-- l10n/cy_GB/files_versions.po | 4 +- l10n/cy_GB/lib.po | 163 +++++++------- l10n/cy_GB/settings.po | 28 +-- l10n/cy_GB/user_ldap.po | 10 +- l10n/da/core.po | 289 ++++++++++++------------ l10n/da/files.po | 160 +++++++------- l10n/da/files_encryption.po | 17 +- l10n/da/files_external.po | 58 +++-- l10n/da/files_sharing.po | 20 +- l10n/da/files_trashbin.po | 38 ++-- l10n/da/files_versions.po | 26 +-- l10n/da/lib.po | 165 +++++++------- l10n/da/settings.po | 232 ++++++++++---------- l10n/da/user_ldap.po | 55 +++-- l10n/de/core.po | 298 ++++++++++++------------- l10n/de/files.po | 170 +++++++-------- l10n/de/files_encryption.po | 16 +- l10n/de/files_external.po | 56 +++-- l10n/de/files_sharing.po | 23 +- l10n/de/files_trashbin.po | 42 ++-- l10n/de/files_versions.po | 29 +-- l10n/de/lib.po | 170 +++++++-------- l10n/de/settings.po | 240 ++++++++++---------- l10n/de/user_ldap.po | 160 +++++++------- l10n/de_DE/core.po | 302 ++++++++++++-------------- l10n/de_DE/files.po | 175 +++++++-------- l10n/de_DE/files_encryption.po | 20 +- l10n/de_DE/files_external.po | 61 +++--- l10n/de_DE/files_sharing.po | 23 +- l10n/de_DE/files_trashbin.po | 43 ++-- l10n/de_DE/files_versions.po | 32 +-- l10n/de_DE/lib.po | 171 +++++++-------- l10n/de_DE/settings.po | 245 ++++++++++----------- l10n/de_DE/user_ldap.po | 164 +++++++------- l10n/el/core.po | 288 ++++++++++++------------ l10n/el/files.po | 158 +++++++------- l10n/el/files_encryption.po | 17 +- l10n/el/files_external.po | 57 +++-- l10n/el/files_sharing.po | 21 +- l10n/el/files_trashbin.po | 37 ++-- l10n/el/files_versions.po | 26 +-- l10n/el/lib.po | 165 +++++++------- l10n/el/settings.po | 234 ++++++++++---------- l10n/el/user_ldap.po | 157 +++++++------ l10n/eo/core.po | 255 +++++++++++----------- l10n/eo/files.po | 133 ++++++------ l10n/eo/files_encryption.po | 9 +- l10n/eo/files_external.po | 43 ++-- l10n/eo/files_sharing.po | 19 +- l10n/eo/files_trashbin.po | 22 +- l10n/eo/files_versions.po | 24 +- l10n/eo/lib.po | 111 +++++----- l10n/eo/settings.po | 129 ++++++----- l10n/eo/user_ldap.po | 72 +++--- l10n/es/core.po | 292 ++++++++++++------------- l10n/es/files.po | 162 +++++++------- l10n/es/files_encryption.po | 18 +- l10n/es/files_external.po | 60 +++-- l10n/es/files_sharing.po | 21 +- l10n/es/files_trashbin.po | 38 ++-- l10n/es/files_versions.po | 28 +-- l10n/es/lib.po | 168 +++++++------- l10n/es/settings.po | 238 ++++++++++---------- l10n/es/user_ldap.po | 158 +++++++------- l10n/es_AR/core.po | 281 ++++++++++++------------ l10n/es_AR/files.po | 152 +++++++------ l10n/es_AR/files_encryption.po | 16 +- l10n/es_AR/files_external.po | 53 +++-- l10n/es_AR/files_sharing.po | 19 +- l10n/es_AR/files_trashbin.po | 37 ++-- l10n/es_AR/files_versions.po | 25 +-- l10n/es_AR/lib.po | 164 +++++++------- l10n/es_AR/settings.po | 224 ++++++++++--------- l10n/es_AR/user_ldap.po | 153 +++++++------ l10n/et_EE/core.po | 280 ++++++++++++------------ l10n/et_EE/files.po | 151 +++++++------ l10n/et_EE/files_encryption.po | 15 +- l10n/et_EE/files_external.po | 56 +++-- l10n/et_EE/files_sharing.po | 19 +- l10n/et_EE/files_trashbin.po | 38 ++-- l10n/et_EE/files_versions.po | 24 +- l10n/et_EE/lib.po | 162 +++++++------- l10n/et_EE/settings.po | 223 ++++++++++--------- l10n/et_EE/user_ldap.po | 152 +++++++------ l10n/eu/core.po | 282 ++++++++++++------------ l10n/eu/files.po | 150 +++++++------ l10n/eu/files_encryption.po | 16 +- l10n/eu/files_external.po | 52 +++-- l10n/eu/files_sharing.po | 19 +- l10n/eu/files_trashbin.po | 37 ++-- l10n/eu/files_versions.po | 24 +- l10n/eu/lib.po | 162 +++++++------- l10n/eu/settings.po | 224 ++++++++++--------- l10n/eu/user_ldap.po | 152 +++++++------ l10n/fa/core.po | 280 ++++++++++++------------ l10n/fa/files.po | 152 +++++++------ l10n/fa/files_encryption.po | 17 +- l10n/fa/files_external.po | 27 ++- l10n/fa/files_sharing.po | 20 +- l10n/fa/files_trashbin.po | 37 ++-- l10n/fa/files_versions.po | 19 +- l10n/fa/lib.po | 109 +++++----- l10n/fa/settings.po | 210 +++++++++--------- l10n/fa/user_ldap.po | 39 ++-- l10n/fi_FI/core.po | 273 ++++++++++++----------- l10n/fi_FI/files.po | 147 ++++++------- l10n/fi_FI/files_encryption.po | 15 +- l10n/fi_FI/files_external.po | 57 +++-- l10n/fi_FI/files_sharing.po | 20 +- l10n/fi_FI/files_trashbin.po | 37 ++-- l10n/fi_FI/files_versions.po | 23 +- l10n/fi_FI/lib.po | 147 +++++++------ l10n/fi_FI/settings.po | 197 +++++++++-------- l10n/fi_FI/user_ldap.po | 95 ++++---- l10n/fr/core.po | 292 ++++++++++++------------- l10n/fr/files.po | 165 +++++++------- l10n/fr/files_encryption.po | 15 +- l10n/fr/files_external.po | 58 +++-- l10n/fr/files_sharing.po | 23 +- l10n/fr/files_trashbin.po | 38 ++-- l10n/fr/files_versions.po | 24 +- l10n/fr/lib.po | 164 +++++++------- l10n/fr/settings.po | 239 ++++++++++---------- l10n/fr/user_ldap.po | 158 +++++++------- l10n/gl/core.po | 282 ++++++++++++------------ l10n/gl/files.po | 153 +++++++------ l10n/gl/files_encryption.po | 16 +- l10n/gl/files_external.po | 57 +++-- l10n/gl/files_sharing.po | 20 +- l10n/gl/files_trashbin.po | 37 ++-- l10n/gl/files_versions.po | 26 +-- l10n/gl/lib.po | 164 +++++++------- l10n/gl/settings.po | 226 ++++++++++--------- l10n/gl/user_ldap.po | 155 +++++++------ l10n/he/core.po | 279 ++++++++++++------------ l10n/he/files.po | 118 +++++----- l10n/he/files_encryption.po | 9 +- l10n/he/files_external.po | 44 ++-- l10n/he/files_sharing.po | 19 +- l10n/he/files_trashbin.po | 35 ++- l10n/he/files_versions.po | 6 +- l10n/he/lib.po | 112 +++++----- l10n/he/settings.po | 120 +++++----- l10n/he/user_ldap.po | 29 ++- l10n/hi/core.po | 94 ++++---- l10n/hi/files.po | 4 +- l10n/hi/files_encryption.po | 4 +- l10n/hi/files_external.po | 6 +- l10n/hi/files_sharing.po | 4 +- l10n/hi/files_trashbin.po | 4 +- l10n/hi/files_versions.po | 4 +- l10n/hi/lib.po | 56 ++--- l10n/hi/settings.po | 8 +- l10n/hi/user_ldap.po | 6 +- l10n/hr/core.po | 196 ++++++++--------- l10n/hr/files.po | 93 ++++---- l10n/hr/files_encryption.po | 4 +- l10n/hr/files_external.po | 10 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 10 +- l10n/hr/files_versions.po | 4 +- l10n/hr/lib.po | 74 +++---- l10n/hr/settings.po | 69 +++--- l10n/hr/user_ldap.po | 6 +- l10n/hu_HU/core.po | 283 ++++++++++++------------ l10n/hu_HU/files.po | 155 +++++++------ l10n/hu_HU/files_encryption.po | 18 +- l10n/hu_HU/files_external.po | 51 +++-- l10n/hu_HU/files_sharing.po | 19 +- l10n/hu_HU/files_trashbin.po | 38 ++-- l10n/hu_HU/files_versions.po | 23 +- l10n/hu_HU/lib.po | 163 +++++++------- l10n/hu_HU/settings.po | 224 ++++++++++--------- l10n/hu_HU/user_ldap.po | 152 +++++++------ l10n/ia/core.po | 115 +++++----- l10n/ia/files.po | 42 ++-- l10n/ia/files_encryption.po | 4 +- l10n/ia/files_external.po | 10 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 8 +- l10n/ia/files_versions.po | 4 +- l10n/ia/lib.po | 60 ++--- l10n/ia/settings.po | 46 ++-- l10n/ia/user_ldap.po | 6 +- l10n/id/core.po | 285 ++++++++++++------------ l10n/id/files.po | 153 +++++++------ l10n/id/files_encryption.po | 16 +- l10n/id/files_external.po | 53 +++-- l10n/id/files_sharing.po | 20 +- l10n/id/files_trashbin.po | 38 ++-- l10n/id/files_versions.po | 25 +-- l10n/id/lib.po | 163 +++++++------- l10n/id/settings.po | 226 ++++++++++--------- l10n/id/user_ldap.po | 153 +++++++------ l10n/is/core.po | 262 +++++++++++----------- l10n/is/files.po | 129 ++++++----- l10n/is/files_encryption.po | 9 +- l10n/is/files_external.po | 47 ++-- l10n/is/files_sharing.po | 19 +- l10n/is/files_trashbin.po | 18 +- l10n/is/files_versions.po | 7 +- l10n/is/lib.po | 111 +++++----- l10n/is/settings.po | 127 ++++++----- l10n/is/user_ldap.po | 11 +- l10n/it/core.po | 284 ++++++++++++------------ l10n/it/files.po | 152 +++++++------ l10n/it/files_encryption.po | 15 +- l10n/it/files_external.po | 56 +++-- l10n/it/files_sharing.po | 19 +- l10n/it/files_trashbin.po | 37 ++-- l10n/it/files_versions.po | 23 +- l10n/it/lib.po | 161 +++++++------- l10n/it/settings.po | 227 ++++++++++--------- l10n/it/user_ldap.po | 152 +++++++------ l10n/ja_JP/core.po | 282 ++++++++++++------------ l10n/ja_JP/files.po | 153 +++++++------ l10n/ja_JP/files_encryption.po | 16 +- l10n/ja_JP/files_external.po | 57 +++-- l10n/ja_JP/files_sharing.po | 20 +- l10n/ja_JP/files_trashbin.po | 37 ++-- l10n/ja_JP/files_versions.po | 26 +-- l10n/ja_JP/lib.po | 163 +++++++------- l10n/ja_JP/settings.po | 225 ++++++++++--------- l10n/ja_JP/user_ldap.po | 154 +++++++------ l10n/ka/core.po | 62 +++--- l10n/ka/files.po | 8 +- l10n/ka/files_encryption.po | 4 +- l10n/ka/files_external.po | 6 +- l10n/ka/files_sharing.po | 9 +- l10n/ka/files_trashbin.po | 4 +- l10n/ka/files_versions.po | 4 +- l10n/ka/lib.po | 73 +++---- l10n/ka/settings.po | 6 +- l10n/ka/user_ldap.po | 8 +- l10n/ka_GE/core.po | 280 ++++++++++++------------ l10n/ka_GE/files.po | 152 +++++++------ l10n/ka_GE/files_encryption.po | 15 +- l10n/ka_GE/files_external.po | 55 +++-- l10n/ka_GE/files_sharing.po | 20 +- l10n/ka_GE/files_trashbin.po | 37 ++-- l10n/ka_GE/files_versions.po | 23 +- l10n/ka_GE/lib.po | 162 +++++++------- l10n/ka_GE/settings.po | 222 ++++++++++--------- l10n/ka_GE/user_ldap.po | 151 +++++++------ l10n/kn/core.po | 42 ++-- l10n/kn/files.po | 4 +- l10n/kn/files_encryption.po | 4 +- l10n/kn/files_external.po | 4 +- l10n/kn/files_sharing.po | 4 +- l10n/kn/files_trashbin.po | 4 +- l10n/kn/files_versions.po | 4 +- l10n/kn/lib.po | 46 ++-- l10n/kn/settings.po | 4 +- l10n/kn/user_ldap.po | 4 +- l10n/ko/core.po | 271 ++++++++++++----------- l10n/ko/files.po | 142 ++++++------ l10n/ko/files_encryption.po | 10 +- l10n/ko/files_external.po | 50 ++--- l10n/ko/files_sharing.po | 21 +- l10n/ko/files_trashbin.po | 20 +- l10n/ko/files_versions.po | 25 +-- l10n/ko/lib.po | 115 +++++----- l10n/ko/settings.po | 147 ++++++------- l10n/ko/user_ldap.po | 110 +++++----- l10n/ku_IQ/core.po | 89 ++++---- l10n/ku_IQ/files.po | 18 +- l10n/ku_IQ/files_encryption.po | 9 +- l10n/ku_IQ/files_external.po | 8 +- l10n/ku_IQ/files_sharing.po | 19 +- l10n/ku_IQ/files_trashbin.po | 8 +- l10n/ku_IQ/files_versions.po | 5 +- l10n/ku_IQ/lib.po | 54 ++--- l10n/ku_IQ/settings.po | 18 +- l10n/ku_IQ/user_ldap.po | 6 +- l10n/lb/core.po | 162 +++++++------- l10n/lb/files.po | 83 ++++--- l10n/lb/files_encryption.po | 4 +- l10n/lb/files_external.po | 10 +- l10n/lb/files_sharing.po | 6 +- l10n/lb/files_trashbin.po | 10 +- l10n/lb/files_versions.po | 5 +- l10n/lb/lib.po | 68 +++--- l10n/lb/settings.po | 69 +++--- l10n/lb/user_ldap.po | 10 +- l10n/lt_LT/core.po | 218 +++++++++---------- l10n/lt_LT/files.po | 105 +++++---- l10n/lt_LT/files_encryption.po | 9 +- l10n/lt_LT/files_external.po | 53 +++-- l10n/lt_LT/files_sharing.po | 5 +- l10n/lt_LT/files_trashbin.po | 18 +- l10n/lt_LT/files_versions.po | 25 +-- l10n/lt_LT/lib.po | 102 +++++---- l10n/lt_LT/settings.po | 80 ++++--- l10n/lt_LT/user_ldap.po | 21 +- l10n/lv/core.po | 276 ++++++++++++----------- l10n/lv/files.po | 149 +++++++------ l10n/lv/files_encryption.po | 15 +- l10n/lv/files_external.po | 51 +++-- l10n/lv/files_sharing.po | 19 +- l10n/lv/files_trashbin.po | 37 ++-- l10n/lv/files_versions.po | 23 +- l10n/lv/lib.po | 161 +++++++------- l10n/lv/settings.po | 223 ++++++++++--------- l10n/lv/user_ldap.po | 151 +++++++------ l10n/mk/core.po | 261 +++++++++++----------- l10n/mk/files.po | 115 +++++----- l10n/mk/files_encryption.po | 9 +- l10n/mk/files_external.po | 47 ++-- l10n/mk/files_sharing.po | 19 +- l10n/mk/files_trashbin.po | 18 +- l10n/mk/files_versions.po | 7 +- l10n/mk/lib.po | 111 +++++----- l10n/mk/settings.po | 119 +++++----- l10n/mk/user_ldap.po | 15 +- l10n/ms_MY/core.po | 137 ++++++------ l10n/ms_MY/files.po | 84 ++++--- l10n/ms_MY/files_encryption.po | 4 +- l10n/ms_MY/files_external.po | 10 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 10 +- l10n/ms_MY/files_versions.po | 4 +- l10n/ms_MY/lib.po | 62 +++--- l10n/ms_MY/settings.po | 68 +++--- l10n/ms_MY/user_ldap.po | 8 +- l10n/my_MM/core.po | 169 +++++++------- l10n/my_MM/files.po | 8 +- l10n/my_MM/files_encryption.po | 4 +- l10n/my_MM/files_external.po | 6 +- l10n/my_MM/files_sharing.po | 12 +- l10n/my_MM/files_trashbin.po | 4 +- l10n/my_MM/files_versions.po | 4 +- l10n/my_MM/lib.po | 105 +++++---- l10n/my_MM/settings.po | 14 +- l10n/my_MM/user_ldap.po | 8 +- l10n/nb_NO/core.po | 217 +++++++++--------- l10n/nb_NO/files.po | 121 +++++------ l10n/nb_NO/files_encryption.po | 16 +- l10n/nb_NO/files_external.po | 44 ++-- l10n/nb_NO/files_sharing.po | 20 +- l10n/nb_NO/files_trashbin.po | 35 ++- l10n/nb_NO/files_versions.po | 6 +- l10n/nb_NO/lib.po | 115 +++++----- l10n/nb_NO/settings.po | 114 +++++----- l10n/nb_NO/user_ldap.po | 118 +++++----- l10n/ne/core.po | 42 ++-- l10n/ne/files.po | 4 +- l10n/ne/files_encryption.po | 4 +- l10n/ne/files_external.po | 4 +- l10n/ne/files_sharing.po | 4 +- l10n/ne/files_trashbin.po | 4 +- l10n/ne/files_versions.po | 4 +- l10n/ne/lib.po | 46 ++-- l10n/ne/settings.po | 4 +- l10n/ne/user_ldap.po | 4 +- l10n/nl/core.po | 292 ++++++++++++------------- l10n/nl/files.po | 160 +++++++------- l10n/nl/files_encryption.po | 17 +- l10n/nl/files_external.po | 52 +++-- l10n/nl/files_sharing.po | 20 +- l10n/nl/files_trashbin.po | 37 ++-- l10n/nl/files_versions.po | 24 +- l10n/nl/lib.po | 164 +++++++------- l10n/nl/settings.po | 232 ++++++++++---------- l10n/nl/user_ldap.po | 153 +++++++------ l10n/nn_NO/core.po | 156 +++++++------ l10n/nn_NO/files.po | 48 ++-- l10n/nn_NO/files_encryption.po | 4 +- l10n/nn_NO/files_external.po | 10 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 10 +- l10n/nn_NO/files_versions.po | 4 +- l10n/nn_NO/lib.po | 62 +++--- l10n/nn_NO/settings.po | 58 +++-- l10n/nn_NO/user_ldap.po | 6 +- l10n/oc/core.po | 197 +++++++++-------- l10n/oc/files.po | 91 ++++---- l10n/oc/files_encryption.po | 4 +- l10n/oc/files_external.po | 10 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 10 +- l10n/oc/files_versions.po | 4 +- l10n/oc/lib.po | 91 ++++---- l10n/oc/settings.po | 87 ++++---- l10n/oc/user_ldap.po | 8 +- l10n/pl/core.po | 291 ++++++++++++------------- l10n/pl/files.po | 158 +++++++------- l10n/pl/files_encryption.po | 16 +- l10n/pl/files_external.po | 54 +++-- l10n/pl/files_sharing.po | 21 +- l10n/pl/files_trashbin.po | 37 ++-- l10n/pl/files_versions.po | 26 +-- l10n/pl/lib.po | 164 +++++++------- l10n/pl/settings.po | 234 ++++++++++---------- l10n/pl/user_ldap.po | 155 +++++++------ l10n/pt_BR/core.po | 290 ++++++++++++------------- l10n/pt_BR/files.po | 160 +++++++------- l10n/pt_BR/files_encryption.po | 16 +- l10n/pt_BR/files_external.po | 53 +++-- l10n/pt_BR/files_sharing.po | 19 +- l10n/pt_BR/files_trashbin.po | 37 ++-- l10n/pt_BR/files_versions.po | 26 +-- l10n/pt_BR/lib.po | 165 +++++++------- l10n/pt_BR/settings.po | 231 ++++++++++---------- l10n/pt_BR/user_ldap.po | 155 +++++++------ l10n/pt_PT/core.po | 286 ++++++++++++------------ l10n/pt_PT/files.po | 156 +++++++------ l10n/pt_PT/files_encryption.po | 16 +- l10n/pt_PT/files_external.po | 53 +++-- l10n/pt_PT/files_sharing.po | 20 +- l10n/pt_PT/files_trashbin.po | 38 ++-- l10n/pt_PT/files_versions.po | 25 +-- l10n/pt_PT/lib.po | 164 +++++++------- l10n/pt_PT/settings.po | 228 ++++++++++--------- l10n/pt_PT/user_ldap.po | 155 +++++++------ l10n/ro/core.po | 287 ++++++++++++------------ l10n/ro/files.po | 136 ++++++------ l10n/ro/files_encryption.po | 10 +- l10n/ro/files_external.po | 57 +++-- l10n/ro/files_sharing.po | 19 +- l10n/ro/files_trashbin.po | 18 +- l10n/ro/files_versions.po | 26 +-- l10n/ro/lib.po | 115 +++++----- l10n/ro/settings.po | 135 ++++++------ l10n/ro/user_ldap.po | 87 ++++---- l10n/ru/core.po | 290 ++++++++++++------------- l10n/ru/files.po | 165 +++++++------- l10n/ru/files_encryption.po | 16 +- l10n/ru/files_external.po | 59 +++-- l10n/ru/files_sharing.po | 22 +- l10n/ru/files_trashbin.po | 37 ++-- l10n/ru/files_versions.po | 26 +-- l10n/ru/lib.po | 168 +++++++------- l10n/ru/settings.po | 235 ++++++++++---------- l10n/ru/user_ldap.po | 155 +++++++------ l10n/si_LK/core.po | 183 ++++++++-------- l10n/si_LK/files.po | 98 ++++----- l10n/si_LK/files_encryption.po | 9 +- l10n/si_LK/files_external.po | 43 ++-- l10n/si_LK/files_sharing.po | 19 +- l10n/si_LK/files_trashbin.po | 14 +- l10n/si_LK/files_versions.po | 5 +- l10n/si_LK/lib.po | 104 +++++---- l10n/si_LK/settings.po | 91 ++++---- l10n/si_LK/user_ldap.po | 29 ++- l10n/sk/core.po | 42 ++-- l10n/sk/files.po | 4 +- l10n/sk/files_encryption.po | 4 +- l10n/sk/files_external.po | 4 +- l10n/sk/files_sharing.po | 4 +- l10n/sk/files_trashbin.po | 4 +- l10n/sk/files_versions.po | 4 +- l10n/sk/lib.po | 46 ++-- l10n/sk/settings.po | 4 +- l10n/sk/user_ldap.po | 4 +- l10n/sk_SK/core.po | 285 ++++++++++++------------ l10n/sk_SK/files.po | 155 +++++++------ l10n/sk_SK/files_encryption.po | 17 +- l10n/sk_SK/files_external.po | 53 +++-- l10n/sk_SK/files_sharing.po | 20 +- l10n/sk_SK/files_trashbin.po | 38 ++-- l10n/sk_SK/files_versions.po | 25 +-- l10n/sk_SK/lib.po | 164 +++++++------- l10n/sk_SK/settings.po | 226 ++++++++++--------- l10n/sk_SK/user_ldap.po | 152 +++++++------ l10n/sl/core.po | 284 ++++++++++++------------ l10n/sl/files.po | 153 +++++++------ l10n/sl/files_encryption.po | 17 +- l10n/sl/files_external.po | 53 +++-- l10n/sl/files_sharing.po | 20 +- l10n/sl/files_trashbin.po | 40 ++-- l10n/sl/files_versions.po | 25 +-- l10n/sl/lib.po | 163 +++++++------- l10n/sl/settings.po | 226 ++++++++++--------- l10n/sl/user_ldap.po | 153 +++++++------ l10n/sq/core.po | 279 ++++++++++++------------ l10n/sq/files.po | 149 +++++++------ l10n/sq/files_encryption.po | 4 +- l10n/sq/files_external.po | 8 +- l10n/sq/files_sharing.po | 19 +- l10n/sq/files_trashbin.po | 37 ++-- l10n/sq/files_versions.po | 4 +- l10n/sq/lib.po | 161 +++++++------- l10n/sq/settings.po | 27 ++- l10n/sq/user_ldap.po | 8 +- l10n/sr/core.po | 257 +++++++++++----------- l10n/sr/files.po | 152 +++++++------ l10n/sr/files_encryption.po | 10 +- l10n/sr/files_external.po | 10 +- l10n/sr/files_sharing.po | 10 +- l10n/sr/files_trashbin.po | 29 ++- l10n/sr/files_versions.po | 5 +- l10n/sr/lib.po | 119 +++++----- l10n/sr/settings.po | 211 +++++++++--------- l10n/sr/user_ldap.po | 71 +++--- l10n/sr@latin/core.po | 143 ++++++------ l10n/sr@latin/files.po | 39 ++-- l10n/sr@latin/files_encryption.po | 4 +- l10n/sr@latin/files_external.po | 10 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 8 +- l10n/sr@latin/files_versions.po | 4 +- l10n/sr@latin/lib.po | 62 +++--- l10n/sr@latin/settings.po | 35 ++- l10n/sr@latin/user_ldap.po | 6 +- l10n/sv/core.po | 285 ++++++++++++------------ l10n/sv/files.po | 153 +++++++------ l10n/sv/files_encryption.po | 16 +- l10n/sv/files_external.po | 52 +++-- l10n/sv/files_sharing.po | 19 +- l10n/sv/files_trashbin.po | 38 ++-- l10n/sv/files_versions.po | 23 +- l10n/sv/lib.po | 118 +++++----- l10n/sv/settings.po | 199 ++++++++--------- l10n/sv/user_ldap.po | 153 +++++++------ l10n/sw_KE/core.po | 42 ++-- l10n/sw_KE/files.po | 4 +- l10n/sw_KE/files_encryption.po | 4 +- l10n/sw_KE/files_external.po | 4 +- l10n/sw_KE/files_sharing.po | 4 +- l10n/sw_KE/files_trashbin.po | 4 +- l10n/sw_KE/files_versions.po | 4 +- l10n/sw_KE/lib.po | 46 ++-- l10n/sw_KE/settings.po | 4 +- l10n/sw_KE/user_ldap.po | 4 +- l10n/ta_LK/core.po | 244 +++++++++++---------- l10n/ta_LK/files.po | 111 +++++----- l10n/ta_LK/files_encryption.po | 9 +- l10n/ta_LK/files_external.po | 43 ++-- l10n/ta_LK/files_sharing.po | 19 +- l10n/ta_LK/files_trashbin.po | 18 +- l10n/ta_LK/files_versions.po | 5 +- l10n/ta_LK/lib.po | 111 +++++----- l10n/ta_LK/settings.po | 99 +++++---- l10n/ta_LK/user_ldap.po | 55 +++-- l10n/te/core.po | 143 ++++++------ l10n/te/files.po | 19 +- l10n/te/files_encryption.po | 4 +- l10n/te/files_external.po | 8 +- l10n/te/files_sharing.po | 6 +- l10n/te/files_trashbin.po | 12 +- l10n/te/files_versions.po | 4 +- l10n/te/lib.po | 68 +++--- l10n/te/settings.po | 19 +- l10n/te/user_ldap.po | 8 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 268 ++++++++++++----------- l10n/th_TH/files.po | 142 ++++++------ l10n/th_TH/files_encryption.po | 9 +- l10n/th_TH/files_external.po | 47 ++-- l10n/th_TH/files_sharing.po | 19 +- l10n/th_TH/files_trashbin.po | 29 ++- l10n/th_TH/files_versions.po | 5 +- l10n/th_TH/lib.po | 113 +++++----- l10n/th_TH/settings.po | 153 +++++++------ l10n/th_TH/user_ldap.po | 123 ++++++----- l10n/tr/core.po | 288 ++++++++++++------------ l10n/tr/files.po | 155 +++++++------ l10n/tr/files_encryption.po | 16 +- l10n/tr/files_external.po | 58 +++-- l10n/tr/files_sharing.po | 19 +- l10n/tr/files_trashbin.po | 38 ++-- l10n/tr/files_versions.po | 25 +-- l10n/tr/lib.po | 103 +++++---- l10n/tr/settings.po | 229 ++++++++++--------- l10n/tr/user_ldap.po | 107 +++++---- l10n/uk/core.po | 284 ++++++++++++------------ l10n/uk/files.po | 152 +++++++------ l10n/uk/files_encryption.po | 16 +- l10n/uk/files_external.po | 53 +++-- l10n/uk/files_sharing.po | 20 +- l10n/uk/files_trashbin.po | 37 ++-- l10n/uk/files_versions.po | 24 +- l10n/uk/lib.po | 165 +++++++------- l10n/uk/settings.po | 224 ++++++++++--------- l10n/uk/user_ldap.po | 153 +++++++------ l10n/ur_PK/core.po | 197 +++++++++-------- l10n/ur_PK/files.po | 6 +- l10n/ur_PK/files_encryption.po | 4 +- l10n/ur_PK/files_external.po | 6 +- l10n/ur_PK/files_sharing.po | 8 +- l10n/ur_PK/files_trashbin.po | 6 +- l10n/ur_PK/files_versions.po | 4 +- l10n/ur_PK/lib.po | 58 ++--- l10n/ur_PK/settings.po | 10 +- l10n/ur_PK/user_ldap.po | 8 +- l10n/vi/core.po | 280 ++++++++++++------------ l10n/vi/files.po | 147 ++++++------- l10n/vi/files_encryption.po | 16 +- l10n/vi/files_external.po | 49 ++--- l10n/vi/files_sharing.po | 20 +- l10n/vi/files_trashbin.po | 37 ++-- l10n/vi/files_versions.po | 23 +- l10n/vi/lib.po | 116 +++++----- l10n/vi/settings.po | 161 +++++++------- l10n/vi/user_ldap.po | 97 ++++----- l10n/zh_CN.GB2312/core.po | 273 ++++++++++++----------- l10n/zh_CN.GB2312/files.po | 110 +++++----- l10n/zh_CN.GB2312/files_encryption.po | 9 +- l10n/zh_CN.GB2312/files_external.po | 52 +++-- l10n/zh_CN.GB2312/files_sharing.po | 19 +- l10n/zh_CN.GB2312/files_trashbin.po | 18 +- l10n/zh_CN.GB2312/files_versions.po | 24 +- l10n/zh_CN.GB2312/lib.po | 109 +++++----- l10n/zh_CN.GB2312/settings.po | 201 +++++++++-------- l10n/zh_CN.GB2312/user_ldap.po | 75 ++++--- l10n/zh_CN/core.po | 288 ++++++++++++------------ l10n/zh_CN/files.po | 156 +++++++------ l10n/zh_CN/files_encryption.po | 16 +- l10n/zh_CN/files_external.po | 58 +++-- l10n/zh_CN/files_sharing.po | 19 +- l10n/zh_CN/files_trashbin.po | 37 ++-- l10n/zh_CN/files_versions.po | 24 +- l10n/zh_CN/lib.po | 163 +++++++------- l10n/zh_CN/settings.po | 228 ++++++++++--------- l10n/zh_CN/user_ldap.po | 152 +++++++------ l10n/zh_HK/core.po | 182 ++++++++-------- l10n/zh_HK/files.po | 25 +-- l10n/zh_HK/files_encryption.po | 13 +- l10n/zh_HK/files_external.po | 10 +- l10n/zh_HK/files_sharing.po | 8 +- l10n/zh_HK/files_trashbin.po | 12 +- l10n/zh_HK/files_versions.po | 13 +- l10n/zh_HK/lib.po | 68 +++--- l10n/zh_HK/settings.po | 16 +- l10n/zh_HK/user_ldap.po | 10 +- l10n/zh_TW/core.po | 287 ++++++++++++------------ l10n/zh_TW/files.po | 157 +++++++------ l10n/zh_TW/files_encryption.po | 17 +- l10n/zh_TW/files_external.po | 34 ++- l10n/zh_TW/files_sharing.po | 21 +- l10n/zh_TW/files_trashbin.po | 40 ++-- l10n/zh_TW/files_versions.po | 24 +- l10n/zh_TW/lib.po | 167 +++++++------- l10n/zh_TW/settings.po | 229 ++++++++++--------- l10n/zh_TW/user_ldap.po | 19 +- 721 files changed, 27129 insertions(+), 28997 deletions(-) diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 0cee119c30..d3e4d145af 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jano Barnard , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -159,7 +158,7 @@ msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Instellings" +msgstr "" #: js/js.js:718 msgid "seconds ago" @@ -294,9 +293,9 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Wagwoord" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -395,11 +394,11 @@ msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Gebruik die volgende skakel om jou wagwoord te herstel: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -410,49 +409,49 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" -msgstr "Gebruikersnaam" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Herstel-versoek" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Jou wagwoord is herstel" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Na aanteken-bladsy" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nuwe wagwoord" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Herstel wagwoord" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Persoonlik" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Gebruikers" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Toepassings" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Hulp" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" @@ -460,7 +459,7 @@ msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Wolk nie gevind" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -510,95 +509,95 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Skep `n admin-rekening" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Gevorderd" +msgstr "" #: templates/installation.php:64 msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" -msgstr "Stel databasis op" +msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" -msgstr "sal gebruik word" +msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" -msgstr "Databasis-gebruiker" +msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" -msgstr "Databasis-wagwoord" +msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" -msgstr "Databasis naam" +msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" -msgstr "Maak opstelling klaar" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "webdienste onder jou beheer" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Teken uit" +msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" -msgstr "Jou wagwoord verloor?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" #: templates/login.php:41 -msgid "remember" -msgstr "onthou" - -#: templates/login.php:43 msgid "Log in" -msgstr "Teken aan" +msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "vorige" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "volgende" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index a95700ff11..e6549742d7 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index ad2760165a..36aa676dfb 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index 634f62d475..b5082caffe 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -99,7 +99,7 @@ msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Gebruikers" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 395e310b0b..ef1b53a69b 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Wagwoord" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" @@ -45,4 +45,4 @@ msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "webdienste onder jou beheer" +msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index d71f287f72..b98068957e 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_versions.po b/l10n/af_ZA/files_versions.po index b27e22d90a..d21eec3f1e 100644 --- a/l10n/af_ZA/files_versions.po +++ b/l10n/af_ZA/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 6150500229..d2cc511ae7 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,27 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Hulp" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Persoonlik" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Instellings" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Gebruikers" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Toepassings" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 6308fa253c..be507f434f 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -401,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Wagwoord" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -417,7 +417,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nuwe wagwoord" +msgstr "" #: templates/personal.php:44 msgid "Change password" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index c08ce22f8b..d08fa4ecc0 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Wagwoord" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Hulp" +msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index bf35eef64f..e9c6549cf3 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Matalqah , 2013 -# aboodilankaboot, 2012 -# blackcoder , 2013 -# blackcoder , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -24,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "المستخدم %s قام بمشاركة ملف معك" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "المستخدم %s قام بمشاركة مجلد معك" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "المستخدم %s قام بمشاركة الملف \"%s\" معك . الملف متاح للتحميل من هنا : %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "المستخدم %s قام بمشاركة المجلد \"%s\" معك . المجلد متاح للتحميل من هنا : %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "نوع التصنيف لم يدخل" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "ألا توجد فئة للإضافة؟" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "هذا التصنيف موجود مسبقا : %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "نوع العنصر لم يدخل" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "رقم %s لم يدخل" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "خطأ في اضافة %s الى المفضلة" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "لم يتم اختيار فئة للحذف" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "خطأ في حذف %s من المفضلة" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "الاحد" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "الأثنين" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "الثلاثاء" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "الاربعاء" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "الخميس" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "الجمعه" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "السبت" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "كانون الثاني" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "شباط" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "آذار" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "نيسان" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "أيار" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "حزيران" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "تموز" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "آب" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "أيلول" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "تشرين الاول" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "تشرين الثاني" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "كانون الاول" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "تعديلات" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "منذ ثواني" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "منذ دقيقة" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} منذ دقائق" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "قبل ساعة مضت" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} ساعة مضت" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "اليوم" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "يوم أمس" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} يوم سابق" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "الشهر الماضي" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} شهر مضت" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "شهر مضى" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "السنةالماضية" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "سنة مضت" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "موافق" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "الغاء" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "اختيار" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "نعم" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "لا" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "نوع العنصر غير محدد." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -247,363 +243,363 @@ msgstr "نوع العنصر غير محدد." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "خطأ" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "اسم التطبيق غير محدد." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "الملف المطلوب {file} غير منصّب." +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "مشارك" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "شارك" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "حصل خطأ عند عملية المشاركة" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "حصل خطأ عند عملية إزالة المشاركة" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "شورك معك ومع المجموعة {group} من قبل {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "شورك معك من قبل {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "شارك مع" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "شارك مع رابط" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "حماية كلمة السر" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "كلمة السر" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "ارسل الرابط بالبريد الى صديق" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "أرسل" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "تعيين تاريخ إنتهاء الصلاحية" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "تاريخ إنتهاء الصلاحية" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "مشاركة عبر البريد الإلكتروني:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "لم يتم العثور على أي شخص" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "لا يسمح بعملية إعادة المشاركة" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "شورك في {item} مع {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "إلغاء مشاركة" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "التحرير مسموح" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "ضبط الوصول" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "إنشاء" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "تحديث" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "حذف" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "مشاركة" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "محمي بكلمة السر" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "جاري الارسال ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "تم ارسال البريد الالكتروني" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى ownCloud community." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud" +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "إعادة تعيين كلمة سر ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "إعادة إرسال البريد الإلكتروني." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "فشل الطلب" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "إسم المستخدم" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "طلب تعديل" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "لقد تم تعديل كلمة السر" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "الى صفحة الدخول" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "كلمة سر جديدة" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "تعديل كلمة السر" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "خصوصيات" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "المستخدم" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "التطبيقات" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "مستخدم رئيسي" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "المساعدة" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "التوصّل محظور" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "لم يتم إيجاد" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "عدل الفئات" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "أدخل" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "تحذير أمان" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Please update your PHP installation to use ownCloud securely." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "بدون وجود مولد أرقام عشوائية آمن قد يتمكن المهاجم من التنبؤ بكلمات اعادة ضبط كلمة المرور والتمكن من السيطرة على حسابك" +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "مجلدات البيانات والملفات الخاصة قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت وذلك بسبب ان ملف .htaccess لا يعمل بشكل صحيح." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "للحصول على معلومات عن كيفية اعداد الخادم الخاص بك , يرجى زيارة الرابط التالي documentation." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "أضف مستخدم رئيسي " +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "خيارات متقدمة" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "مجلد المعلومات" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "أسس قاعدة البيانات" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "سيتم استخدمه" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "مستخدم قاعدة البيانات" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "كلمة سر مستخدم قاعدة البيانات" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "إسم قاعدة البيانات" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "مساحة جدول قاعدة البيانات" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "خادم قاعدة البيانات" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "انهاء التعديلات" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "خدمات الوب تحت تصرفك" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "الخروج" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "تم رفض تسجيل الدخول التلقائي!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "قد يكون حسابك في خطر إن لم تقم بإعادة تعيين كلمة السر حديثاً" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "الرجاء إعادة تعيين كلمة السر لتأمين حسابك." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "هل نسيت كلمة السر؟" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "تذكر" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "أدخل" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "اسماء دخول بديلة" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "السابق" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "التالي" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "جاري تحديث Owncloud الى اصدار %s , قد يستغرق هذا بعض الوقت." +msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 797e5c947e..faf8d273dd 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Matalqah , 2013 -# blackcoder , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -22,115 +20,115 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "فشل في نقل %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "فشل في اعادة تسمية الملف" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "لم يتم رفع أي ملف , خطأ غير معروف" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "تم ترفيع الملفات بنجاح." +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini " +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "لم يتم ترفيع أي من الملفات" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "المجلد المؤقت غير موجود" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "خطأ في الكتابة على القرص الصلب" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "لا يوجد مساحة تخزينية كافية" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "مسار غير صحيح." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "الملفات" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "شارك" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "حذف بشكل دائم" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "محذوف" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "إعادة تسميه" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "قيد الانتظار" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} موجود مسبقا" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "استبدال" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "اقترح إسم" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "إلغاء" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "استبدل {new_name} بـ {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "تراجع" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "جاري تنفيذ عملية الحذف" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "جاري رفع 1 ملف" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -138,35 +136,35 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "\".\" اسم ملف غير صحيح." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "اسم الملف لا يجوز أن يكون فارغا" +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "مساحتك التخزينية امتلأت تقريبا " +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "فشل في رفع ملفاتك , إما أنها مجلد أو حجمها 0 بايت" +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -174,147 +172,147 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "تم إلغاء عملية رفع الملفات ." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "عنوان ال URL لا يجوز أن يكون فارغا." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "خطأ" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "الاسم" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "حجم" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "معدل" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "مجلد عدد 1" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} مجلدات" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "ملف واحد" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} ملفات" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "إرفع" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "التعامل مع الملف" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "الحد الأقصى لحجم الملفات التي يمكن رفعها" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "الحد الأقصى المسموح به" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "اجباري للسماح بالتحميل المتعدد للمجلدات والملفات" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "تفعيل خاصية تحميل ملفات ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 = غير محدود" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "الحد الأقصى المسموح به لملفات ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "حفظ" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "جديد" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "ملف" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "مجلد" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "من رابط" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "حذف الملفات" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "إلغاء رفع الملفات" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "لا تملك صلاحيات الكتابة هنا." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "تحميل" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "إلغاء مشاركة" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "حجم الترفيع أعلى من المسموح" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "يرجى الانتظار , جاري فحص الملفات ." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "الفحص الحالي" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "تحديث ذاكرة التخزين المؤقت(الكاش) الخاصة بملفات النظام ..." +msgstr "" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index 8ebdd5b0b9..4493c96ebd 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Raed Chammem , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "التشفير" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "تشفير الملفات فعال." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "الملفات الاتية لن يتم تشفيرها:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "إستثناء أنواع الملفات الاتية من التشفير: " +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "لا شيء" +msgstr "" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 20127d9c0a..31c5da4c96 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -95,16 +95,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "مجموعات" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "المستخدمين" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "حذف" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 909d047e14..a5cac4cf52 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "كلمة المرور" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "تطبيق" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s شارك المجلد %s معك" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s شارك الملف %s معك" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "تحميل" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "لا يوجد عرض مسبق لـ" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "خدمات الشبكة تحت سيطرتك" +msgstr "" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index be9ba85169..f051c20ed5 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "تعذّر حذف%s بشكل دائم" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "تعذّر استرجاع %s " +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "إبدء عملية الإستعادة" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "خطأ" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "حذف بشكل دائم" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "حذف بشكل دائم" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "اسم" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "تم الحذف" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "مجلد عدد 1" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} مجلدات" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "ملف واحد" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} ملفات" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "لا يوجد شيء هنا. سلة المهملات خاليه." +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "استعيد" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "إلغاء" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "الملفات المحذوفه" +msgstr "" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index 0ef6f3e755..d1a4e2f57a 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -51,7 +50,7 @@ msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "الإصدارات" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index eef5380b76..7b2e8f9780 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Matalqah , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -20,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "المساعدة" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "شخصي" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "تعديلات" +msgstr "" #: app.php:385 msgid "Users" -msgstr "المستخدمين" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "التطبيقات" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "المدير" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "تحميل ملفات ZIP متوقف" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "العودة الى الملفات" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip" +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "تعذّر تحديده" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "التطبيق غير مفعّل" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "لم يتم التأكد من الشخصية بنجاح" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة" +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "الملفات" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "معلومات إضافية" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "صور" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "اعداد اسم مستخدم للمدير" +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "اعداد كلمة مرور للمدير" +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s ادخل اسم المستخدم الخاص بقاعدة البيانات." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s ادخل اسم فاعدة البيانات" +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s ادخل اسم خادم قاعدة البيانات" +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "خطأ في قواعد البيانات : \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "الأمر المخالف كان : \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "أسم المستخدم '%s'@'localhost' الخاص بـ MySQL موجود مسبقا" +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "احذف اسم المستخدم هذا من الـ MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "أسم المستخدم '%s'@'%%' الخاص بـ MySQL موجود مسبقا" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "احذف اسم المستخدم هذا من الـ MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "الرجاء التحقق من دليل التنصيب." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "منذ ثواني" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "منذ دقيقة" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d دقيقة مضت" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "قبل ساعة مضت" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d ساعة مضت" +msgstr "" #: template.php:118 msgid "today" -msgstr "اليوم" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "يوم أمس" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d يوم مضى" +msgstr "" #: template.php:121 msgid "last month" -msgstr "الشهر الماضي" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d شهر مضت" +msgstr "" #: template.php:123 msgid "last year" -msgstr "السنةالماضية" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "سنة مضت" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s متاح . احصل على المزيد من المعلومات " +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "محدّث" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "فحص التحديثات معطّل" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "تعذر العثور على المجلد \"%s\"" +msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index af0914278f..1be745f76e 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Matalqah , 2013 -# Robin Appelman , 2012 -# Raed667 , 2013 -# aboodilankaboot, 2012 -# blackcoder , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -24,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "فشل تحميل القائمة من الآب ستور" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "لم يتم التأكد من الشخصية بنجاح" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -37,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "تعذر تغيير اسم الحساب" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "المجموعة موجودة مسبقاً" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "فشل إضافة المجموعة" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "فشل عملية تفعيل التطبيق" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "تم حفظ البريد الإلكتروني" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "البريد الإلكتروني غير صالح" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "فشل إزالة المجموعة" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "فشل إزالة المستخدم" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "تم تغيير اللغة" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "طلبك غير مفهوم" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "لا يستطيع المدير إزالة حسابه من مجموعة المديرين" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "فشل إضافة المستخدم الى المجموعة %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "فشل إزالة المستخدم من المجموعة %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "تعذر تحديث التطبيق." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "تم التحديث الى " +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "إيقاف" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "تفعيل" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "الرجاء الانتظار ..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "خطأ" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "جاري التحديث ..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "حصل خطأ أثناء تحديث التطبيق" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "تم التحديث بنجاح" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "حفظ" +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "تم الحذف" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "تراجع" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "تعذر حذف المستخدم" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "مجموعات" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "مدير المجموعة" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "حذف" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "اضافة مجموعة" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "يجب ادخال اسم مستخدم صحيح" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "حصل خطأ اثناء انشاء مستخدم" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "يجب ادخال كلمة مرور صحيحة" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "تحذير أمان" +msgstr "" #: templates/admin.php:18 msgid "" @@ -185,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "مجلدات data وملفاتك قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت. ملف .htaccess الذي وفرته Owncloud لا يعمل . نقترح أن تقوم باعداد خادمك بطريقة تجعل مجلد data غير قابل للوصول اليه عن طريق الانترنت أو أن تقوم بتغيير مساره الى خارج مسار مجلد الصفحات الافتراضي document root الخاص بخادم الويب ." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "تحذير في التنصيب" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "الرجاء التحقق من دليل التنصيب." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "الموديل 'fileinfo' مفقود" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق " +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "اللغه لا تعمل" +msgstr "" #: templates/admin.php:63 #, php-format @@ -222,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "لم يتمكن خادم ownCloud هذا كم ضبط لغة النظام الى %s . هذا يعني انه قد يكون هناك أخطاء في اسماء الملفات. نحن نوصي ان تقوم بتركيب الحزم اللازمة لدعم %s على نظامك . " +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "الاتصال بالانترنت لا يعمل" +msgstr "" #: templates/admin.php:78 msgid "" @@ -236,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "خادم الـ Owncloud هذا غير متصل بالانترنت. هذا يعني أن بعض الميزات مثل الربط بوحدة تخزينية خارجيه, التنبيهات الخاصة بالتحديثات أو تركيب تطبيقات من مصادر خارجية لن يعمل . كما ان الوصول الى الملفات من خارج الخادم وارسال رسائل البريد التنبيهية لن تعمل أيضا . نقترح أن تفعل خدمة الانترنت في هذا الخادم اذا أردت ان تستفيد من كافة ميزات Owncloud" +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "مجدول" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php مسجلة في خدمة webcron . قم باستدعاء صفحة cron.php الموجودة في owncloud root مره كل دقيقة عن طريق بروتوكول http" +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "قم باستخدام خدمة cron . قم باستدعاء ملف cron.php الموجود في مجلد Owncloud عن طريق system cronjob مره كل دقيقة" +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "مشاركة" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "السماح بالمشاركة عن طريق الAPI " +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "السماح بالعناوين" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "السماح بإعادة المشاركة " +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "حماية" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "فرض HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "اجبار المستخدم بالاتصال مع Owncloud عن طريق اتصال مشفر" +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "الرجاء الاتصال مع خادم Owncloud هذا عن طريق HTTPS لتفعيل أو تعطيل اجبار الدخول باستخدام " +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "سجل" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "مستوى السجل" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "المزيد" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "أقل" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "إصدار" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -341,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "طوّر من قبل ownCloud مجتمع, الـ النص المصدري مرخص بموجب رخصة أفيرو العمومية." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "أضف تطبيقاتك" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "المزيد من التطبيقات" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "إختر تطبيقاً" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "راجع صفحة التطبيق على apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-ترخيص من قبل " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "حدث" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "كتاب توثيق المستخدم" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "كتاب توثيق المدير" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "توثيق متوفر على الشبكة" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "منتدى" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "تعقب علة" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "دعم تجاري" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "تم إستهلاك %s من المتوفر %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "احصل على التطبيقات لمزامنة ملفاتك" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "ابدأ خطوات بداية التشغيل من جديد" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "كلمات السر" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "لقد تم تغيير كلمة السر" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "لم يتم تعديل كلمة السر بنجاح" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "كلمات السر الحالية" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "كلمات سر جديدة" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "عدل كلمة السر" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "اسم الحساب" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "العنوان البريدي" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "عنوانك البريدي" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "اللغة" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "ساعد في الترجمه" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "اسم الدخول" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "انشئ" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "وحدة التخزين الافتراضية" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "غير محدود" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "شيء آخر" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "وحدة التخزين" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "تغيير اسم الحساب" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "اعداد كلمة مرور جديدة" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "افتراضي" +msgstr "" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 71c1e62994..dda2bc87d4 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "فشل الحذف" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "كلمة المرور" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "المساعدة" +msgstr "" diff --git a/l10n/be/core.po b/l10n/be/core.po index daa1be716a..e579aff18c 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Семён Гариленко <2507496@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -294,7 +293,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "" @@ -410,7 +409,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "" @@ -514,45 +513,45 @@ msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Дасведчаны" +msgstr "" #: templates/installation.php:64 msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" -msgstr "Завяршыць ўстаноўку." +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" @@ -562,43 +561,43 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "Папярэдняя" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "Далей" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/be/files.po b/l10n/be/files.po index f18fca6d7e..a7815f9dfb 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index f0897fc482..e69ef2d14d 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index 3f9c858c25..142d2eff37 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index 2fb3fa7b5c..03a80d8b42 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index cd40cf486a..1953d1cd3d 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/files_versions.po b/l10n/be/files_versions.po index a04f5ae5a2..e194db5f43 100644 --- a/l10n/be/files_versions.po +++ b/l10n/be/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 13d868719d..28410aea6b 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 9310d998a4..9da6989831 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index 9ff31d5c45..b6630ab6f2 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index cde47dc667..87fba821f6 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# adin , 2011 -# Jan-Christoph Borchardt , 2011 -# Stefan Ilivanov , 2011 -# Yasen Pramatarov , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -162,15 +158,15 @@ msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Настройки" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "преди секунди" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "преди 1 минута" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" @@ -178,7 +174,7 @@ msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "преди 1 час" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" @@ -186,11 +182,11 @@ msgstr "" #: js/js.js:723 msgid "today" -msgstr "днес" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "вчера" +msgstr "" #: js/js.js:725 msgid "{days} days ago" @@ -198,7 +194,7 @@ msgstr "" #: js/js.js:726 msgid "last month" -msgstr "последният месец" +msgstr "" #: js/js.js:727 msgid "{months} months ago" @@ -210,11 +206,11 @@ msgstr "" #: js/js.js:729 msgid "last year" -msgstr "последната година" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "последните години" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" @@ -222,7 +218,7 @@ msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Отказ" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" @@ -247,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -263,7 +259,7 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Споделяне" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" @@ -287,7 +283,7 @@ msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Споделено с" +msgstr "" #: js/share.js:164 msgid "Share with link" @@ -299,7 +295,7 @@ msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Парола" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -347,7 +343,7 @@ msgstr "" #: js/share.js:325 msgid "create" -msgstr "създаване" +msgstr "" #: js/share.js:328 msgid "update" @@ -415,7 +411,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Потребител" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" @@ -431,7 +427,7 @@ msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Нова парола" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" @@ -439,23 +435,23 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Лични" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Потребители" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Приложения" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Админ" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Помощ" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" @@ -471,7 +467,7 @@ msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Добавяне" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -559,7 +555,7 @@ msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "уеб услуги под Ваш контрол" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 9185f4bd85..7d79702e86 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2011,2013 -# Yasen Pramatarov , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -62,11 +60,11 @@ msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Липсва временна папка" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Възникна проблем при запис в диска" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -74,31 +72,31 @@ msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Невалидна директория." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Файлове" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Споделяне" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Изтриване завинаги" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Изтриване" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Преименуване" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Чакащо" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" @@ -106,7 +104,7 @@ msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "препокриване" +msgstr "" #: js/filelist.js:252 msgid "suggest name" @@ -114,7 +112,7 @@ msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "отказ" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" @@ -122,7 +120,7 @@ msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "възтановяване" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -174,7 +172,7 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Качването е спряно." +msgstr "" #: js/files.js:408 msgid "" @@ -191,39 +189,39 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Име" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Размер" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Променено" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 папка" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} папки" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 файл" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} файла" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Качване" +msgstr "" #: templates/admin.php:5 msgid "File handling" @@ -231,7 +229,7 @@ msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Максимален размер за качване" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " @@ -247,7 +245,7 @@ msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "Ползвайте 0 за без ограничения" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" @@ -255,19 +253,19 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Запис" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Ново" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Текстов файл" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Папка" +msgstr "" #: templates/index.php:14 msgid "From link" @@ -279,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Спри качването" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -287,11 +285,11 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Няма нищо тук. Качете нещо." +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Изтегляне" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" @@ -299,7 +297,7 @@ msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Файлът който сте избрали за качване е прекалено голям" +msgstr "" #: templates/index.php:110 msgid "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 5f2bd2b9f5..5e68af0082 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Криптиране" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Няма" +msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 79af39ac84..7323b45511 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Достъпът е даден" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" @@ -28,7 +27,7 @@ msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Даване на достъп" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." @@ -60,11 +59,11 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Външно хранилище" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Име на папката" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -72,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Конфигурация" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Опции" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Приложимо" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -88,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Няма избрано" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Всички потребители" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Групи" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Потребители" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Изтриване" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Вкл. на поддръжка за външно потр. хранилище" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Позволено е на потребителите да ползват тяхно лично външно хранилище" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL основни сертификати" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Импортиране на основен сертификат" +msgstr "" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 18f3a9f6d7..49cb21e5ca 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Парола" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Потвърждение" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s сподели папката %s с Вас" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s сподели файла %s с Вас" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Изтегляне" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Няма наличен преглед за" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "уеб услуги под Ваш контрол" +msgstr "" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 080dacc848..5c32c9d531 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -3,15 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kiril , 2013 -# Stefan Ilivanov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 09:02+0000\n" -"Last-Translator: Stefan Ilivanov \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Невъзможно изтриване на %s завинаги" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Невъзможно възтановяване на %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "извършване на действие по възстановяване" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "изтриване на файла завинаги" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Изтриване завинаги" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Име" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Изтрито" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 папка" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} папки" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 файл" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} файла" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Няма нищо. Кофата е празна!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Възтановяване" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Изтриване" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Изтрити файлове" +msgstr "" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index a5a002b123..e1fdeedbe4 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -3,14 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 09:20+0000\n" -"Last-Translator: Stefan Ilivanov \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,12 +24,12 @@ msgstr "" #: history.php:40 msgid "success" -msgstr "успешно" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Файлът %s бе върнат към версия %s" +msgstr "" #: history.php:49 msgid "failure" @@ -51,7 +50,7 @@ msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Версии" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 0ae91bad8e..38f91732d1 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kiril , 2013 -# Stefan Ilivanov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -21,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Помощ" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Лични" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Настройки" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Потребители" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Приложения" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Админ" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Изтеглянето като ZIP е изключено." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Файловете трябва да се изтеглят един по един." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Назад към файловете" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "не може да се определи" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Приложението не е включено." +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Възникна проблем с идентификацията" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Ключът е изтекъл, моля презаредете страницата" +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Файлове" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Текст" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Снимки" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Въведете потребителско име за администратор." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Въведете парола за администратор." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s въведете потребителско име за базата с данни." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s въведете име на базата с данни." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s, не можете да ползвате точки в името на базата от данни" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Невалидно PostgreSQL потребителско име и/или парола" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Необходимо е да влезете в всъществуващ акаунт или като администратора" +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Невалидно Oracle потребителско име и/или парола" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Невалидно MySQL потребителско име и/или парола" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Грешка в базата от данни: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL потребителят '%s'@'localhost' вече съществува" +msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" -msgstr "Изтриване на потребителя от MySQL" - -#: setup.php:309 -#, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL потребителят '%s'@'%%' вече съществува." +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Изтриване на потребителя от MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Невалидно MS SQL потребителско име и/или парола: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Моля направете повторна справка с ръководството за инсталиране." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "преди секунди" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "преди 1 минута" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "преди %d минути" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "преди 1 час" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "преди %d часа" +msgstr "" #: template.php:118 msgid "today" -msgstr "днес" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "вчера" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "преди %d дни" +msgstr "" #: template.php:121 msgid "last month" -msgstr "последният месец" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "преди %d месеца" +msgstr "" #: template.php:123 msgid "last year" -msgstr "последната година" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "последните години" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s е налична. Получете повече информация" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "е актуална" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "проверката за обновления е изключена" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Невъзможно откриване на категорията \"%s\"" +msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index d331243b61..cefe2cddad 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# adin , 2011 -# Stefan Ilivanov , 2011,2013 -# Yasen Pramatarov , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -27,7 +24,7 @@ msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Възникна проблем с идентификацията" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -39,11 +36,11 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Групата вече съществува" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Невъзможно добавяне на група" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " @@ -51,27 +48,27 @@ msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email адреса е записан" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Невалиден Email адрес" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Невъзможно изтриване на група" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Невъзможно изтриване на потребител" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Езикът е променен" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Невалидна заявка" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -93,27 +90,27 @@ msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Обновяване до {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Изключено" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Включено" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Моля почакайте...." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Обновява се..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" @@ -121,19 +118,19 @@ msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Обновено" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Записване..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "изтрито" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "възтановяване" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -142,7 +139,7 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Групи" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" @@ -150,11 +147,11 @@ msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Изтриване" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "нова група" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" @@ -170,7 +167,7 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" @@ -198,7 +195,7 @@ msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Моля направете повторна справка с ръководството за инсталиране." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -238,7 +235,7 @@ msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Крон" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" @@ -258,7 +255,7 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Споделяне" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" @@ -321,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Още" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "По-малко" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Версия" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -343,15 +340,15 @@ msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Добавете Ваше приложение" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Още приложения" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Изберете приложение" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" @@ -363,31 +360,31 @@ msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Обновяване" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Потребителска документация" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Административна документация" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Документация" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Форум" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Докладвани грешки" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Платена поддръжка" +msgstr "" #: templates/personal.php:8 #, php-format @@ -400,11 +397,11 @@ msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Покажи настройките за първоначално зареждане отново" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Парола" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -412,31 +409,31 @@ msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Промяната на паролата не беше извършена" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Текуща парола" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Нова парола" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Промяна на паролата" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Екранно име" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-mail" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Вашия email адрес" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" @@ -444,15 +441,15 @@ msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Език" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Помогнете с превода" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" @@ -460,27 +457,27 @@ msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Потребител" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Създаване" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Хранилище по подразбиране" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Неограничено" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Други" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Хранилище" +msgstr "" #: templates/users.php:93 msgid "change display name" @@ -492,4 +489,4 @@ msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "По подразбиране" +msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 8ec4f3ffdb..c60cd7156f 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Парола" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Помощ" +msgstr "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 9499d31da5..5fa1339acf 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Shubhra Paul , 2013 -# Shubhra Paul , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -22,34 +20,34 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "%s নামের ব্যবহারকারী \"%s\" ফাইলটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "%s নামের ব্যবহারকারী \"%s\" ফোল্ডারটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "যোগ করার মত কোন ক্যাটেগরি নেই ?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -60,184 +58,184 @@ msgstr "" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "অবজেক্টের ধরণটি প্রদান করা হয় নি।" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID প্রদান করা হয় নি।" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি ।" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "রবিবার" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "সোমবার" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "মঙ্গলবার" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "বুধবার" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "বৃহষ্পতিবার" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "শুক্রবার" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "শনিবার" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "জানুয়ারি" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "ফেব্রুয়ারি" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "মার্চ" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "এপ্রিল" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "মে" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "জুন" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "জুলাই" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "অগাষ্ট" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "সেপ্টেম্বর" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "অক্টোবর" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "নভেম্বর" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "ডিসেম্বর" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "নিয়ামকসমূহ" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "সেকেন্ড পূর্বে" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 মিনিট পূর্বে" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} মিনিট পূর্বে" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 ঘন্টা পূর্বে" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} ঘন্টা পূর্বে" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "আজ" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "গতকাল" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} দিন পূর্বে" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "গতমাস" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} মাস পূর্বে" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "মাস পূর্বে" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "গত বছর" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "বছর পূর্বে" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "তথাস্তু" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "বাতির" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "বেছে নিন" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "হ্যাঁ" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "না" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -245,139 +243,139 @@ msgstr "অবজেক্টের ধরণটি সুনির্দিষ #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "সমস্যা" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "অ্যাপের নামটি সুনির্দিষ্ট নয়।" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "আবশ্যিক {file} টি সংস্থাপিত নেই !" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "ভাগাভাগিকৃত" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "ভাগাভাগি কর" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner} আপনার সাথে ভাগাভাগি করেছেন" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "যাদের সাথে ভাগাভাগি করা হয়েছে" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "লিংকের সাথে ভাগাভাগি কর" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "কূটশব্দ সুরক্ষিত" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "কূটশব্দ" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "পাঠাও" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "ভাগাভাগি বাতিল কর" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "সম্পাদনা করতে পারবেন" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "অধিগম্যতা নিয়ন্ত্রণ" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "তৈরী করুন" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "পরিবর্ধন কর" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "মুছে ফেল" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "ভাগাভাগি কর" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "কূটশব্দদ্বারা সুরক্ষিত" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "পাঠানো হচ্ছে......" +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "ই-মেইল পাঠানো হয়েছে" +msgstr "" #: js/update.js:14 msgid "" @@ -392,89 +390,89 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।" +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "অনুরোধ ব্যর্থ !" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "ব্যবহারকারী" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "অনুরোধ পূনঃনির্ধারণ" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "প্রবেশ পৃষ্ঠায়" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "নতুন কূটশব্দ" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "কূটশব্দ পূনঃনির্ধারণ কর" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "ব্যক্তিগত" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "ব্যবহারকারী" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "অ্যাপস" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "প্রশাসন" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "সহায়িকা" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "অধিগমনের অনুমতি নেই" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "ক্লাউড খুঁজে পাওয়া গেল না" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "ক্যাটেগরি সম্পাদনা" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "যোগ কর" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "নিরাপত্তাজনিত সতর্কতা" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -511,57 +509,57 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "প্রশাসক একাউন্ট তৈরী করুন" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "সুচারু" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "ডাটা ফোল্ডার " +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "ডাটাবেচ কনফিগার করুন" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "ব্যবহৃত হবে" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "ডাটাবেজ ব্যবহারকারী" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "ডাটাবেজ কূটশব্দ" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "ডাটাবেজের নাম" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "ডাটাবেজ টেবলস্পেস" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "ডাটাবেজ হোস্ট" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "সেটআপ সুসম্পন্ন কর" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "ওয়েব সার্ভিসের নিয়ন্ত্রণ আপনার হাতের মুঠোয়" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "প্রস্থান" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" @@ -579,15 +577,15 @@ msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "কূটশব্দ হারিয়েছেন?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "মনে রাখ" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "প্রবেশ" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -595,13 +593,13 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "পূর্ববর্তী" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "পরবর্তী" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।" +msgstr "" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index d74b2d6fbf..0b17c1de4e 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Shubhra Paul , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -21,51 +20,51 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যা অজ্ঞাত।" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "আপলোড করা ফাইলটি HTML ফর্মে নির্ধারিত MAX_FILE_SIZE নির্দেশিত সর্বোচ্চ আকার অতিক্রম করেছে " +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "কোন ফাইল আপলোড করা হয় নি" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "অস্থায়ী ফোল্ডার খোয়া গিয়েছে" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "ডিস্কে লিখতে ব্যর্থ" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -73,15 +72,15 @@ msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "ভুল ডিরেক্টরি" +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "ফাইল" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "ভাগাভাগি কর" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -89,39 +88,39 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "মুছে ফেল" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "পূনঃনামকরণ" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "মুলতুবি" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} টি বিদ্যমান" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "প্রতিস্থাপন" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "নাম সুপারিশ করুন" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "বাতিল" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "ক্রিয়া প্রত্যাহার" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -129,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "১টি ফাইল আপলোড করা হচ্ছে" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -137,17 +136,17 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "টি একটি অননুমোদিত নাম।" +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -165,112 +164,112 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "আপলোড বাতিল করা হয়েছে।" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL ফাঁকা রাখা যাবে না।" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "সমস্যা" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "নাম" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "আকার" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "পরিবর্তিত" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "১টি ফোল্ডার" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} টি ফোল্ডার" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "১টি ফাইল" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} টি ফাইল" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "আপলোড" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "ফাইল হ্যার্ডলিং" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "আপলোডের সর্বোচ্চ আকার" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "অনুমোদিত সর্বোচ্চ আকার" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার জন্য আবশ্যক।" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP ডাউনলোড সক্রিয় কর" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "০ এর অর্থ অসীম" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP ফাইলের ইনপুটের সর্বোচ্চ আকার" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "সংরক্ষন কর" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "নতুন" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "টেক্সট ফাইল" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "ফোল্ডার" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr " লিংক থেকে" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -278,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "আপলোড বাতিল কর" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -286,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "ডাউনলোড" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "ভাগাভাগি বাতিল " +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "আপলোডের আকারটি অনেক বড়" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "বর্তমান স্ক্যানিং" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 0bcc04a179..f48348cd56 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "সংকেতায়ন" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -35,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "কোনটিই নয়" +msgstr "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index f243e865f5..ed8b94b149 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -19,23 +19,23 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "অধিগমনের অনুমতি প্রদান করা হলো" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা " +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "অধিগমনের অনুমতি প্রদান কর" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " +msgstr "" #: lib/config.php:431 msgid "" @@ -59,7 +59,7 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "বাহ্যিক সংরক্ষণাগার" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" @@ -71,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "কনফিগারেসন" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "বিকল্পসমূহ" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "প্রযোজ্য" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -87,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "কোনটিই নির্ধারণ করা হয় নি" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "সমস্ত ব্যবহারকারী" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "গোষ্ঠীসমূহ" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "ব্যবহারকারী" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "মুছে ফেল" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "ব্যবহারকারীদেরকে তাদের নিজস্ব বাহ্যিক সংরক্ষনাগার সাউন্ট করতে অনুমোদন দাও" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL রুট সনদপত্র" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "রুট সনদপত্রটি আমদানি করুন" +msgstr "" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 00d132cd17..cf2f6e934f 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -19,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "কূটশব্দ" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "জমা দাও" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "ডাউনলোড" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" +msgstr "" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 5327ace142..e559a25995 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "সমস্যা" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "রাম" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "১টি ফোল্ডার" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} টি ফোল্ডার" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "১টি ফাইল" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} টি ফাইল" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "মুছে" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 72d49d3c8c..a5634c5e35 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -50,7 +50,7 @@ msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "ভার্সন" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 0509e1a16d..27af8b887c 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -19,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "সহায়িকা" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "ব্যক্তিগত" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "নিয়ামকসমূহ" +msgstr "" #: app.php:385 msgid "Users" -msgstr "ব্যভহারকারী" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "অ্যাপ" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "প্রশাসক" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "ফাইলে ফিরে চল" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -63,19 +63,19 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "অ্যাপ্লিকেসনটি সক্রিয় নয়" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "অনুমোদন ঘটিত সমস্যা" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।" +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "ফাইল" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" @@ -113,92 +113,92 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "সেকেন্ড পূর্বে" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "১ মিনিট পূর্বে" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d মিনিট পূর্বে" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 ঘন্টা পূর্বে" +msgstr "" #: template.php:117 #, php-format @@ -207,20 +207,20 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "আজ" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "গতকাল" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d দিন পূর্বে" +msgstr "" #: template.php:121 msgid "last month" -msgstr "গত মাস" +msgstr "" #: template.php:122 #, php-format @@ -229,24 +229,24 @@ msgstr "" #: template.php:123 msgid "last year" -msgstr "গত বছর" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "বছর পূর্বে" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s এখন সুলভ। আরও জানুন" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "সর্বশেষ" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "পরিবর্ধন পরীক্ষণ করা বন্ধ রাখা হয়েছে" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index e9f27a0ba4..1c28545e73 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Shubhra Paul , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -20,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "অনুমোদন ঘটিত সমস্যা" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -37,53 +36,53 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "গোষ্ঠী যোগ করা সম্ভব হলো না" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "অ্যপটি সক্রিয় করতে সক্ষম নয়।" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "ই-মেইল সংরক্ষন করা হয়েছে" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "ই-মেইলটি সঠিক নয়" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না " +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না " +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "ভাষা পরিবর্তন করা হয়েছে" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "অনুরোধটি যথাযথ নয়" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "প্রশাসকবৃন্দ তাদেরকে প্রশাসক গোষ্ঠী থেকে মুছে ফেলতে পারবেন না" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr " %s গোষ্ঠীতে ব্যবহারকারী যোগ করা সম্ভব হলো না " +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "%s গোষ্ঠী থেকে ব্যবহারকারীকে অপসারণ করা সম্ভব হলো না" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -95,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "নিষ্ক্রিয়" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "সক্রিয় " +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -107,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "সমস্যা" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -123,7 +122,7 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "সংরক্ষণ করা হচ্ছে.." +msgstr "" #: js/users.js:43 msgid "deleted" @@ -131,7 +130,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "ক্রিয়া প্রত্যাহার" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -140,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "গোষ্ঠীসমূহ" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "গোষ্ঠী প্রশাসক" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "মুছে ফেল" +msgstr "" #: js/users.js:262 msgid "add group" @@ -168,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "নিরাপত্তাজনিত সতর্কতা" +msgstr "" #: templates/admin.php:18 msgid "" @@ -319,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "বেশী" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "কম" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "ভার্সন" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -337,60 +336,60 @@ msgid "" "licensed under the AGPL." -msgstr "তৈলী করেছেন ownCloud সম্প্রদায়, যার উৎস কোডটি AGPL এর অধীনে লাইসেন্সকৃত।" +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "আপনার অ্যাপটি যোগ করুন" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "আরও অ্যাপ" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "অ্যাপ নির্বাচন করুন" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-লাইসেন্সধারী " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "পরিবর্ধন" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "ব্যবহারকারী সহায়িকা" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "প্রশাসক সহায়িকা" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "অনলাইন সহায়িকা" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "ফোরাম" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "বাগট্র্যাকার" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "বাণিজ্যিক সাপোর্ট" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" @@ -398,31 +397,31 @@ msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "কূটশব্দ" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "বর্তমান কূটশব্দ" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "নতুন কূটশব্দ" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "কূটশব্দ পরিবর্তন করুন" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -430,31 +429,31 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "ই-মেইল " +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "আপনার ই-মেইল ঠিকানা" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "ভাষা" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "অনুবাদ করতে সহায়তা করুন" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" @@ -462,23 +461,23 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "তৈরী কর" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "পূর্বনির্ধারিত সংরক্ষণাগার" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "অসীম" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "অন্যান্য" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "সংরক্ষণাগার" +msgstr "" #: templates/users.php:93 msgid "change display name" @@ -490,4 +489,4 @@ msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "পূর্বনির্ধারিত" +msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 34a3a9d16c..674cc6f996 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -92,16 +92,16 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "হোস্ট" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "SSL আবশ্যক না হলে আপনি এই প্রটোকলটি মুছে ফেলতে পারেন । এরপর শুরু করুন এটা দিয়ে ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "ভিত্তি DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" @@ -109,66 +109,66 @@ msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "ব্যবহারকারি DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. পরিচয় গোপন রেখে অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।" +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "কূটশব্দ" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।" +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "ব্যবহারকারির প্রবেশ ছাঁকনী" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "প্রবেশের চেষ্টা করার সময় প্রযোজ্য ছাঁকনীটি নির্ধারণ করবে। প্রবেশের সময় ব্যবহারকারী নামটি %%uid দিয়ে প্রতিস্থাপিত হবে।" +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "%%uid স্থানধারক ব্যবহার করুন, উদাহরণঃ \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "ব্যবহারকারী তালিকা ছাঁকনী" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "ব্যবহারকারী উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।" +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "কোন স্থানধারক ব্যতীত, যেমনঃ \"objectClass=person\"।" +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "গোষ্ঠী ছাঁকনী" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "গোষ্ঠীসমূহ উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।" +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "কোন স্থান ধারক ব্যতীত, উদাহরণঃ\"objectClass=posixGroup\"।" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" @@ -184,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "পোর্ট" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -210,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "TLS ব্যবহার কর" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -218,21 +218,21 @@ msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "বর্ণ অসংবেদী LDAP সার্ভার (উইন্ডোজ)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "শুধুমাত্র যদি এই বিকল্পটি ব্যবহার করেই সংযোগ কার্যকরী হয় তবে আপনার ownCloud সার্ভারে LDAP সার্ভারের SSL সনদপত্রটি আমদানি করুন।" +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "অনুমোদিত নয়, শুধুমাত্র পরীক্ষামূলক ব্যবহারের জন্য।" +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -240,7 +240,7 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।" +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" @@ -248,15 +248,15 @@ msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "ব্যবহারকারীর প্রদর্শিতব্য নামের ক্ষেত্র" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "ব্যবহারকারীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।" +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "ভিত্তি ব্যবহারকারি বৃক্ষাকারে" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" @@ -272,15 +272,15 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "গোষ্ঠীর প্রদর্শিতব্য নামের ক্ষেত্র" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "গোষ্ঠীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।" +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "ভিত্তি গোষ্ঠী বৃক্ষাকারে" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" @@ -292,7 +292,7 @@ msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "গোষ্ঠী-সদস্য সংস্থাপন" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -308,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "বাইটে" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -322,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।" +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "সহায়িকা" +msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 43fb6ea819..33c39c2f8d 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# jmontane , 2012 -# rogerc , 2013 -# rogerc , 2011-2013 -# aseques , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -24,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "L'usuari %s ha compartit un fitxer amb vós" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "L'usuari %s ha compartit una carpeta amb vós" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "L'usuari %s ha compartit el fitxer \"%s\" amb vós. Està disponible per a la descàrrega a: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "L'usuari %s ha compartit la carpeta \"%s\" amb vós. Està disponible per a la descàrrega a: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "No s'ha especificat el tipus de categoria." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "No voleu afegir cap categoria?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Aquesta categoria ja existeix: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "No s'ha proporcionat el tipus d'objecte." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "No s'ha proporcionat la ID %s." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Error en afegir %s als preferits." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "No hi ha categories per eliminar." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Error en eliminar %s dels preferits." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Diumenge" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Dilluns" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Dimarts" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Dimecres" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Dijous" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Divendres" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Dissabte" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Gener" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Febrer" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Març" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Abril" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maig" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Juny" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Juliol" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Agost" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Setembre" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Octubre" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Novembre" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Desembre" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Arranjament" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "segons enrere" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "fa 1 minut" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "fa {minutes} minuts" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "fa 1 hora" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "fa {hours} hores" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "avui" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "ahir" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "fa {days} dies" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "el mes passat" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "fa {months} mesos" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "mesos enrere" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "l'any passat" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "anys enrere" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "D'acord" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Cancel·la" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Escull" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Sí" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "No" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "No s'ha especificat el tipus d'objecte." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -247,363 +243,363 @@ msgstr "No s'ha especificat el tipus d'objecte." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Error" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "No s'ha especificat el nom de l'aplicació." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "El fitxer requerit {file} no està instal·lat!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Compartit" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Comparteix" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Error en compartir" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Error en deixar de compartir" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Error en canviar els permisos" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Compartit amb vos i amb el grup {group} per {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Compartit amb vos per {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Comparteix amb" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Comparteix amb enllaç" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Protegir amb contrasenya" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Contrasenya" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Enllaç per correu electrónic amb la persona" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Envia" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Estableix la data d'expiració" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Data d'expiració" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Comparteix per correu electrònic" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "No s'ha trobat ningú" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "No es permet compartir de nou" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Compartit en {item} amb {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Deixa de compartir" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "pot editar" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "control d'accés" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "crea" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "actualitza" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "elimina" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "comparteix" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Protegeix amb contrasenya" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Error en eliminar la data d'expiració" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Error en establir la data d'expiració" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Enviant..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "El correu electrónic s'ha enviat" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "L'actualització ha estat incorrecte. Comuniqueu aquest error a la comunitat ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "L'actualització ha estat correcte. Ara us redirigim a ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "estableix de nou la contrasenya Owncloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Useu l'enllaç següent per restablir la contrasenya: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "S'ha enviat el correu reinicialització" +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "El requeriment ha fallat!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nom d'usuari" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Sol·licita reinicialització" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "La vostra contrasenya s'ha reinicialitzat" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "A la pàgina d'inici de sessió" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Contrasenya nova" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Reinicialitza la contrasenya" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personal" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Usuaris" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplicacions" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administrador" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Ajuda" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Accés prohibit" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "No s'ha trobat el núvol" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Edita les categories" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Afegeix" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Avís de seguretat" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "La versió de PHP que useu és vulnerable a l'atac per NULL Byte (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Actualitzeu la instal·lació de PHP per usar ownCloud de forma segura." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "No està disponible el generador de nombres aleatoris segurs, habiliteu l'extensió de PHP OpenSSL." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sense un generador de nombres aleatoris segurs un atacant podria predir els senyals per restablir la contrasenya i prendre-us el compte." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "La carpeta de dades i els seus fitxers probablement són accessibles des d'internet perquè el fitxer .htaccess no funciona." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Per més informació sobre com configurar correctament el servidor, mireu la documentació." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Crea un compte d'administrador" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avançat" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Carpeta de dades" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configura la base de dades" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "s'usarà" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Usuari de la base de dades" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Contrasenya de la base de dades" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nom de la base de dades" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Espai de taula de la base de dades" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Ordinador central de la base de dades" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Acaba la configuració" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "controleu els vostres serveis web" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Surt" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "L'ha rebutjat l'acceditació automàtica!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Se no heu canviat la contrasenya recentment el vostre compte pot estar compromès!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Heu perdut la contrasenya?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "recorda'm" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Inici de sessió" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Acreditacions alternatives" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "anterior" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "següent" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "S'està actualitzant ownCloud a la versió %s, pot trigar una estona." +msgstr "" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 4d0213fbbe..b3e82e11ff 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# bury1000 , 2012 -# jmontane , 2012 -# Josep Tomàs , 2012 -# Josep Tomàs , 2012 -# rogerc , 2013 -# rogerc , 2011-2013 -# aseques , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -27,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr " No s'ha pogut moure %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "No es pot canviar el nom del fitxer" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "No s'ha carregat cap fitxer. Error desconegut" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "El fitxer s'ha pujat correctament" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "El fitxer només s'ha pujat parcialment" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "El fitxer no s'ha pujat" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "S'ha perdut un fitxer temporal" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Ha fallat en escriure al disc" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "No hi ha prou espai disponible" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Directori no vàlid." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Fitxers" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Comparteix" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Esborra permanentment" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Suprimeix" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Reanomena" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Pendents" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} ja existeix" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "substitueix" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "sugereix un nom" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "cancel·la" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "s'ha substituït {old_name} per {new_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "desfés" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "executa d'operació d'esborrar" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 fitxer pujant" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "fitxers pujant" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' és un nom no vàlid per un fitxer." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "El nom del fitxer no pot ser buit." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden actualitzar o sincronitzar!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "No hi ha prou espai disponible" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "La pujada s'ha cancel·lat." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "La URL no pot ser buida" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Error" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nom" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Mida" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modificat" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 carpeta" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} carpetes" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 fitxer" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} fitxers" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Puja" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Gestió de fitxers" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Mida màxima de pujada" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "màxim possible:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Necessari per fitxers múltiples i baixada de carpetes" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Activa la baixada ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 és sense límit" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Mida màxima d'entrada per fitxers ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Desa" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nou" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Fitxer de text" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Carpeta" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Des d'enllaç" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Fitxers esborrats" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Cancel·la la pujada" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "No teniu permisos d'escriptura aquí." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Res per aquí. Pugeu alguna cosa!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Baixa" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Deixa de compartir" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "La pujada és massa gran" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "S'estan escanejant els fitxers, espereu" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Actualment escanejant" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Actualitzant la memòria de cau del sistema de fitxers..." +msgstr "" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 951708dd52..c0e1bd490c 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Encriptatge" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "L'encriptació de fitxers està activada." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Els tipus de fitxers següents no s'encriptaran:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Exclou els tipus de fitxers següents de l'encriptatge:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Cap" +msgstr "" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index ec555961c5..9aae13bced 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# rogerc , 2013 -# rogerc , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -21,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "S'ha concedit l'accés" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Error en configurar l'emmagatzemament Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Concedeix accés" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Error en configurar l'emmagatzemament Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Avís: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li." +msgstr "" #: lib/config.php:437 msgid "" @@ -61,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Emmagatzemament extern" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nom de la carpeta" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Emmagatzemament extern" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Configuració" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Options" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Aplicable" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Afegeix emmagatzemament" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Cap d'establert" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Tots els usuaris" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grups" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Usuaris" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Elimina" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Habilita l'emmagatzemament extern d'usuari" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Permet als usuaris muntar el seu emmagatzemament extern propi" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Certificats SSL root" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importa certificat root" +msgstr "" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index d4394d00f7..51e77729bc 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Contrasenya" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Envia" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s ha compartit la carpeta %s amb vós" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s ha compartit el fitxer %s amb vós" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Baixa" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "No hi ha vista prèvia disponible per a" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "controleu els vostres serveis web" +msgstr "" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index e06aadb4b6..e1f883c1fd 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "No s'ha pogut esborrar permanentment %s" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "No s'ha pogut restaurar %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "executa l'operació de restauració" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Error" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "esborra el fitxer permanentment" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Esborra permanentment" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nom" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Eliminat" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 carpeta" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} carpetes" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 fitxer" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} fitxers" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "La paperera està buida!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Recupera" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Esborra" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Fitxers eliminats" +msgstr "" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 9b325d0966..4ad8035ea8 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -23,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "No s'ha pogut revertir: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "èxit" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "El fitxer %s s'ha revertit a la versió %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "fallada" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "El fitxer %s no s'ha pogut revertir a la versió %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "No hi ha versións antigues disponibles" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "No heu especificat el camí" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versions" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Reverteix un fitxer a una versió anterior fent clic en el seu botó de reverteix" +msgstr "" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 29f4a9f8ac..d4d6c1c2a5 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# rogerc , 2013 -# rogerc , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -21,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Ajuda" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personal" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Configuració" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Usuaris" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplicacions" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administració" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "La baixada en ZIP està desactivada." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Els fitxers s'han de baixar d'un en un." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Torna a Fitxers" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "no s'ha pogut determinar" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "L'aplicació no està habilitada" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Error d'autenticació" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Fitxers" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Text" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Imatges" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Establiu un nom d'usuari per l'administrador." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Establiu una contrasenya per l'administrador." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s escriviu el nom d'usuari de la base de dades." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s escriviu el nom de la base de dades." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s no podeu usar punts en el nom de la base de dades" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s establiu l'ordinador central de la base de dades." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Nom d'usuari i/o contrasenya PostgreSQL no vàlids" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Heu d'escriure un compte existent o el d'administrador." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Nom d'usuari i/o contrasenya MySQL no vàlids" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Error DB: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "L'ordre en conflicte és: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "L'usuari MySQL '%s'@'localhost' ja existeix." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Elimina aquest usuari de MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "L'usuari MySQL '%s'@'%%' ja existeix" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Elimina aquest usuari de MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nom d'usuari i/o contrasenya MS SQL no vàlids: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Comproveu les guies d'instal·lació." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "segons enrere" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "fa 1 minut" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "fa %d minuts" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "fa 1 hora" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "fa %d hores" +msgstr "" #: template.php:118 msgid "today" -msgstr "avui" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "ahir" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "fa %d dies" +msgstr "" #: template.php:121 msgid "last month" -msgstr "el mes passat" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "fa %d mesos" +msgstr "" #: template.php:123 msgid "last year" -msgstr "l'any passat" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "fa anys" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s està disponible. Obtén més informació" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "actualitzat" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "la comprovació d'actualitzacions està desactivada" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "No s'ha trobat la categoria \"%s\"" +msgstr "" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 6fa9330d75..448e234877 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# bury1000 , 2012 -# jmontane , 2012 -# Josep Tomàs , 2012 -# Josep Tomàs , 2012 -# rogerc , 2013 -# rogerc , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -25,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "No s'ha pogut carregar la llista des de l'App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Error d'autenticació" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -38,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "No s'ha pogut canviar el nom a mostrar" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "El grup ja existeix" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "No es pot afegir el grup" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "No s'ha pogut activar l'apliació" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "S'ha desat el correu electrònic" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "El correu electrònic no és vàlid" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "No es pot eliminar el grup" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "No es pot eliminar l'usuari" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "S'ha canviat l'idioma" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Sol.licitud no vàlida" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Els administradors no es poden eliminar del grup admin" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "No es pot afegir l'usuari al grup %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "No es pot eliminar l'usuari del grup %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "No s'ha pogut actualitzar l'aplicació." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Actualitza a {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Desactiva" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Activa" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Espereu..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Error" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Actualitzant..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Error en actualitzar l'aplicació" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Actualitzada" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "S'està desant..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "esborrat" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "desfés" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "No s'ha pogut eliminar l'usuari" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grups" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grup Admin" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Suprimeix" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "afegeix grup" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Heu de facilitar un nom d'usuari vàlid" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Error en crear l'usuari" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Heu de facilitar una contrasenya vàlida" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Català" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Avís de seguretat" +msgstr "" #: templates/admin.php:18 msgid "" @@ -186,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "La carpeta de dades i els fitxers provablement són accessibles des d'internet. El fitxer .htaccess que proporciona ownCloud no funciona. Us recomanem que configureu el vostre servidor web de manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de la carpeta arrel del servidor web." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Avís de configuració" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Comproveu les guies d'instal·lació." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "No s'ha trobat el mòdul 'fileinfo'" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Locale no funciona" +msgstr "" #: templates/admin.php:63 #, php-format @@ -223,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Aquest servidor ownCloud no pot establir el locale del sistema a %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "La connexió a internet no funciona" +msgstr "" #: templates/admin.php:78 msgid "" @@ -237,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Aquest servidor ownCloud no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament externs, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu gaudir de totes les possibilitats d'ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Executa una tasca per cada paquet carregat" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php està registrat en un servei webcron. Feu la crida a cron.php a l'arrel d'ownCloud cada minut a través de http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Usa un servei cron del sistema. Feu la crida al fitxer cron.php a través d'un cronjob del sistema cada minut." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Compartir" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Habilita l'API de compartir" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Permet que les aplicacions utilitzin l'API de compartir" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Permet enllaços" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Permet compartir de nou" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Permet als usuaris compartir de nou elements ja compartits amb ells" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Permet compartir amb qualsevol" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Permet als usuaris compartir només amb els usuaris del seu grup" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Seguretat" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Força HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Força als clients la connexió amb ownCloud via una connexió encriptada." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Connecteu aquesta instància onwCloud via HTTPS per habilitar o deshabilitar el forçament SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Registre" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Nivell de registre" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Més" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Menys" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versió" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -342,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Desenvolupat per la comunitat ownCloud, el codi font té llicència AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Afegiu la vostra aplicació" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Més aplicacions" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Seleccioneu una aplicació" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-propietat de " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Actualitza" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Documentació d'usuari" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Documentació d'administrador" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Documentació en línia" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Fòrum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Seguiment d'errors" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Suport comercial" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Heu utilitzat %s d'un total disponible de %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Obtén les aplicacions per sincronitzar fitxers" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Torna a mostrar l'assistent de primera execució" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Contrasenya" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "La seva contrasenya s'ha canviat" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "No s'ha pogut canviar la contrasenya" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Contrasenya actual" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Contrasenya nova" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Canvia la contrasenya" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Nom a mostrar" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Correu electrònic" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Correu electrònic" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Idioma" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Ajudeu-nos amb la traducció" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Nom d'accés" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Crea" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Emmagatzemament per defecte" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Il·limitat" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Un altre" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Emmagatzemament" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "canvia el nom a mostrar" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "estableix nova contrasenya" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Per defecte" +msgstr "" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index bf2d7adf14..97eb4a88ab 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -21,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Ha fallat en eliminar la configuració del servidor" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "La configuració és vàlida i s'ha pogut establir la comunicació!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "La configuració és vàlida, però ha fallat el Bind. Comproveu les credencials i l'arranjament del servidor." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "La configuració no és vàlida. Per més detalls mireu al registre d'ownCloud." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Eliminació fallida" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Voleu prendre l'arranjament de la configuració actual del servidor?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Voleu mantenir la configuració?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "No es pot afegir la configuració del servidor" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "La prova de connexió ha reeixit" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "La prova de connexió ha fallat" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Voleu eliminar la configuració actual del servidor?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Confirma l'eliminació" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments no desitjats. Demaneu a l'administrador del sistema que en desactivi una." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Avís: El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Configuració del servidor" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Afegeix la configuració del servidor" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Màquina" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN Base" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Una DN Base per línia" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN Usuari" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Contrasenya" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Per un accés anònim, deixeu la DN i la contrasenya en blanc." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtre d'inici de sessió d'usuari" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Defineix el filtre a aplicar quan s'intenta l'inici de sessió. %%uid reemplaça el nom d'usuari en l'acció d'inici de sessió." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "useu el paràmetre de substitució %%uid, per exemple \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Llista de filtres d'usuari" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Defineix el filtre a aplicar quan es mostren usuaris" +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "sense cap paràmetre de substitució, per exemple \"objectClass=persona\"" +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filtre de grup" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Defineix el filtre a aplicar quan es mostren grups." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "sense cap paràmetre de substitució, per exemple \"objectClass=grupPosix\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Arranjaments de connexió" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Configuració activa" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Si està desmarcat, aquesta configuració s'ometrà." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Màquina de còpia de serguretat (rèplica)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Afegiu una màquina de còpia de seguretat opcional. Ha de ser una rèplica del servidor LDAP/AD principal." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Port de la còpia de seguretat (rèplica)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Desactiva el servidor principal" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Quan està connectat, ownCloud només es connecta al servidor de la rèplica." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Usa TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "No ho useu adicionalment per a conexions LDAPS, fallarà." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Desactiva la validació de certificat SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "No recomanat, ús només per proves." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Memòria de cau Time-To-Live" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "en segons. Un canvi buidarà la memòria de cau." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Arranjaments de carpetes" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Camp per mostrar el nom d'usuari" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atribut LDAP a usar per generar el nom d'usuari ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Arbre base d'usuaris" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Una DN Base d'Usuari per línia" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Atributs de cerca d'usuari" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Opcional; Un atribut per línia" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Camp per mostrar el nom del grup" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atribut LDAP a usar per generar el nom de grup ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Arbre base de grups" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Una DN Base de Grup per línia" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atributs de cerca de grup" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Associació membres-grup" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Atributs especials" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Camp de quota" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Quota per defecte" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "en bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Camp de correu electrònic" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Norma per anomenar la carpeta arrel d'usuari" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Deixeu-ho buit pel nom d'usuari (per defecte). Altrament, especifiqueu un atribut LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Comprovació de la configuració" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Ajuda" +msgstr "" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index b875d5d708..23ff5793ce 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -3,18 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# cernydav , 2013 -# Jan Krejci , 2011 -# Martin , 2011-2012 -# Michal Hrušecký , 2012 -# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: cernydav \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Uživatel %s s vámi sdílí soubor" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Uživatel %s s vámi sdílí složku" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Uživatel %s s vámi sdílí složku \"%s\". Můžete ji stáhnout zde: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Nezadán typ kategorie." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Žádná kategorie k přidání?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Kategorie již existuje: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Nezadán typ objektu." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "Nezadáno ID %s." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Chyba při přidávání %s k oblíbeným." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Žádné kategorie nebyly vybrány ke smazání." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Chyba při odebírání %s z oblíbených." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Neděle" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Pondělí" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Úterý" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Středa" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Čtvrtek" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Pátek" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sobota" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Leden" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Únor" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Březen" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Duben" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Květen" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Červen" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Červenec" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Srpen" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Září" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Říjen" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Listopad" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Prosinec" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Nastavení" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "před pár vteřinami" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "před minutou" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "před {minutes} minutami" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "před hodinou" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "před {hours} hodinami" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "dnes" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "včera" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "před {days} dny" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "minulý měsíc" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "před {months} měsíci" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "před měsíci" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "minulý rok" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "před lety" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Zrušit" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Vybrat" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ano" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Ne" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Není určen typ objektu." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -248,363 +243,363 @@ msgstr "Není určen typ objektu." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Chyba" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Není určen název aplikace." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Požadovaný soubor {file} není nainstalován." +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Sdílené" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Sdílet" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Chyba při sdílení" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Chyba při rušení sdílení" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Chyba při změně oprávnění" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "S Vámi a skupinou {group} sdílí {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "S Vámi sdílí {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Sdílet s" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Sdílet s odkazem" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Chránit heslem" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Heslo" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Odeslat osobě odkaz e-mailem" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Odeslat" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Nastavit datum vypršení platnosti" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Datum vypršení platnosti" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Sdílet e-mailem:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Žádní lidé nenalezeni" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Sdílení již sdílené položky není povoleno" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Sdíleno v {item} s {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Zrušit sdílení" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "lze upravovat" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "řízení přístupu" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "vytvořit" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "aktualizovat" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "smazat" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "sdílet" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Chráněno heslem" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Chyba při odstraňování data vypršení platnosti" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Chyba při nastavení data vypršení platnosti" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Odesílám ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "E-mail odeslán" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do evidence chyb ownCloud" +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Aktualizace byla úspěšná. Přesměrovávám na ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Obnovení hesla pro ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Heslo obnovíte použitím následujícího odkazu: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Bude Vám e-mailem zaslán odkaz pro obnovu hesla." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Obnovovací e-mail odeslán." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Požadavek selhal." +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Uživatelské jméno" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Vyžádat obnovu" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Vaše heslo bylo obnoveno" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Na stránku přihlášení" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nové heslo" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Obnovit heslo" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Osobní" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Uživatelé" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplikace" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administrace" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Nápověda" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Přístup zakázán" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud nebyl nalezen" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Upravit kategorie" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Přidat" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Bezpečnostní upozornění" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Verze vašeho PHP je napadnutelná pomocí techniky \"NULL Byte\" (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Aktualizujte prosím vaši instanci PHP pro bezpečné používání ownCloud." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Není dostupný žádný bezpečný generátor náhodných čísel. Povolte, prosím, rozšíření OpenSSL v PHP." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Bez bezpečného generátoru náhodných čísel může útočník předpovědět token pro obnovu hesla a převzít kontrolu nad Vaším účtem." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Váš adresář s daty a soubory jsou dostupné z internetu, protože soubor .htaccess nefunguje." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Pro informace jak správně nastavit váš server se podívejte do dokumentace." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Vytvořit účet správce" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Pokročilé" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Složka s daty" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Nastavit databázi" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "bude použito" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Uživatel databáze" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Heslo databáze" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Název databáze" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Tabulkový prostor databáze" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Hostitel databáze" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Dokončit nastavení" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "webové služby pod Vaší kontrolou" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Odhlásit se" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatické přihlášení odmítnuto." +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován." +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Ztratili jste své heslo?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "zapamatovat" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Přihlásit" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternativní přihlášení" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "předchozí" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "následující" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." +msgstr "" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 256ab28e94..48d0d7adf2 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2011-2012 -# Michal Hrušecký , 2012 -# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -23,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Nelze přesunout %s - existuje soubor se stejným názvem" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Nelze přesunout %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Nelze přejmenovat soubor" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Soubor nebyl odeslán. Neznámá chyba" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Soubor byl odeslán úspěšně" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Soubor byl odeslán pouze částečně" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Žádný soubor nebyl odeslán" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Chybí adresář pro dočasné soubory" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Zápis na disk selhal" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Nedostatek dostupného úložného prostoru" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Neplatný adresář" +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Soubory" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Sdílet" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Trvale odstranit" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Smazat" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Přejmenovat" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Čekající" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} již existuje" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "nahradit" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "navrhnout název" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "zrušit" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "nahrazeno {new_name} s {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "zpět" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "provést smazání" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "odesílá se 1 soubor" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "soubory se odesílají" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' je neplatným názvem souboru." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Název souboru nemůže být prázdný řetězec." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory." +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Nedostatek dostupného místa" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Odesílání zrušeno." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL nemůže být prázdná" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Chyba" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Název" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Velikost" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Změněno" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 složka" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} složky" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 soubor" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} soubory" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Odeslat" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Zacházení se soubory" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximální velikost pro odesílání" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "největší možná: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Potřebné pro více-souborové stahování a stahování složek." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Povolit ZIP-stahování" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 znamená bez omezení" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maximální velikost vstupu pro ZIP soubory" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Uložit" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nový" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Textový soubor" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Složka" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Z odkazu" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Odstraněné soubory" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Zrušit odesílání" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Nemáte zde práva zápisu." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Žádný obsah. Nahrajte něco." +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Stáhnout" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Zrušit sdílení" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Odeslaný soubor je příliš velký" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Soubory se prohledávají, prosím čekejte." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Aktuální prohledávání" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Aktualizuji mezipaměť souborového systému..." +msgstr "" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index cf291239f3..1de65a395a 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2012. -# Tomáš Chvátal , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Šifrování" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Šifrování je povoleno." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Následující typy souborů nebudou šifrovány:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Vyjmout následující typy souborů ze šifrování:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Žádné" +msgstr "" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index cd3761b8b5..a65ccade83 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -3,17 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jan Krejci , 2012 -# Martin , 2012 -# Michal Hrušecký , 2012 -# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 07:10+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Přístup povolen" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Chyba při nastavení úložiště Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Povolit přístup" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Chyba při nastavení úložiště Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Varování: není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Varování: není nainstalována, nebo povolena, podpora Curl v PHP. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje." +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Externí úložiště" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Název složky" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Externí úložiště" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Nastavení" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Možnosti" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Přístupný pro" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Přidat úložiště" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Nenastaveno" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Všichni uživatelé" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Skupiny" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Uživatelé" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Smazat" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Zapnout externí uživatelské úložiště" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Povolit uživatelům připojení jejich vlastních externích úložišť" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Kořenové certifikáty SSL" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importovat kořenového certifikátu" +msgstr "" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index c68599b2ae..b894df6abd 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2012. -# Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -22,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Heslo" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Odeslat" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s s Vámi sdílí složku %s" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s s Vámi sdílí soubor %s" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Stáhnout" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Náhled není dostupný pro" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "služby webu pod Vaší kontrolou" +msgstr "" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 48adf5d966..8e91776bda 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Tomáš Chvátal , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Nelze trvale odstranit %s" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Nelze obnovit %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "provést obnovu" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Chyba" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "trvale odstranit soubor" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Trvale odstranit" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Název" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Smazáno" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 složka" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} složky" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 soubor" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} soubory" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Žádný obsah. Váš koš je prázdný." +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Obnovit" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Smazat" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Smazané soubory" +msgstr "" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 1425b50698..2235ef4a89 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2012. -# Tomáš Chvátal , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Nelze navrátit: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "úspěch" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Soubor %s byl navrácen na verzi %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "sehlhání" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Soubor %s nemohl být navrácen na verzi %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Nejsou dostupné žádné starší verze" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Nezadána cesta" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Verze" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Navraťte soubor do předchozí verze kliknutím na tlačítko navrátit" +msgstr "" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 13b309d2ad..0a81fdfcd0 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2012 -# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:10+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -21,115 +19,115 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Nápověda" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Osobní" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Nastavení" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Uživatelé" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplikace" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administrace" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Stahování ZIPu je vypnuto." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Soubory musí být stahovány jednotlivě." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Zpět k souborům" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "nelze zjistit" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Aplikace není povolena" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Chyba ověření" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token vypršel. Obnovte prosím stránku." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Soubory" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Text" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Obrázky" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Zadejte uživatelské jméno správce." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Zadejte heslo správce." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "Zadejte uživatelské jméno %s databáze." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "Zadejte název databáze pro %s databáze." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "V názvu databáze %s nesmíte používat tečky." +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "Zadejte název počítače s databází %s." +msgstr "" #: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Uživatelské jméno, či heslo PostgreSQL není platné" +msgstr "" #: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Musíte zadat existující účet, či správce." +msgstr "" #: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Uživatelské jméno, či heslo Oracle není platné" +msgstr "" #: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Uživatelské jméno, či heslo MySQL není platné" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 @@ -137,120 +135,120 @@ msgstr "Uživatelské jméno, či heslo MySQL není platné" #: setup.php:615 #, php-format msgid "DB Error: \"%s\"" -msgstr "Chyba DB: \"%s\"" +msgstr "" #: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 #: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 #: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Podezřelý příkaz byl: \"%s\"" +msgstr "" #: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Uživatel '%s'@'localhost' již v MySQL existuje." +msgstr "" #: setup.php:305 msgid "Drop this user from MySQL" -msgstr "Zahodit uživatele z MySQL" +msgstr "" #: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "Uživatel '%s'@'%%' již v MySQL existuje" +msgstr "" #: setup.php:311 msgid "Drop this user from MySQL." -msgstr "Zahodit uživatele z MySQL." +msgstr "" #: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Podezřelý příkaz byl: \"%s\", jméno: %s, heslo: %s" +msgstr "" #: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Uživatelské jméno, či heslo MSSQL není platné: %s" +msgstr "" #: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." +msgstr "" #: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Zkonzultujte, prosím, průvodce instalací." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "před vteřinami" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "před 1 minutou" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "před %d minutami" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "před hodinou" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "před %d hodinami" +msgstr "" #: template.php:118 msgid "today" -msgstr "dnes" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "včera" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "před %d dny" +msgstr "" #: template.php:121 msgid "last month" -msgstr "minulý měsíc" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "Před %d měsíci" +msgstr "" #: template.php:123 msgid "last year" -msgstr "loni" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "před lety" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s je dostupná. Získat více informací" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "aktuální" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "kontrola aktualizací je vypnuta" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Nelze nalézt kategorii \"%s\"" +msgstr "" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index abc25c7f35..425a9086ea 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Robin Appelman , 2012 -# Jan Krejci , 2011-2012 -# Martin , 2011-2012 -# Michal Hrušecký , 2012 -# Michal Hrušecký , 2012 -# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -25,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Nelze načíst seznam z App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Chyba ověření" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -38,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Nelze změnit zobrazované jméno" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Skupina již existuje" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Nelze přidat skupinu" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Nelze povolit aplikaci." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-mail uložen" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Neplatný e-mail" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Nelze smazat skupinu" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Nelze smazat uživatele" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Jazyk byl změněn" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Neplatný požadavek" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Správci se nemohou odebrat sami ze skupiny správců" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Nelze přidat uživatele do skupiny %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Nelze odstranit uživatele ze skupiny %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Nelze aktualizovat aplikaci." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Aktualizovat na {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Zakázat" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Povolit" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Čekejte prosím..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Chyba" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Aktualizuji..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Chyba při aktualizaci aplikace" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Aktualizováno" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Ukládám..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "smazáno" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "zpět" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Nelze odebrat uživatele" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Skupiny" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Správa skupiny" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Smazat" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "přidat skupinu" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Musíte zadat platné uživatelské jméno" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Chyba při vytváření užiatele" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Musíte zadat platné heslo" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Česky" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Bezpečnostní upozornění" +msgstr "" #: templates/admin.php:18 msgid "" @@ -186,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Váš adresář dat a všechny Vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess, který je poskytován ownCloud, nefunguje. Důrazně Vám doporučujeme nastavit váš webový server tak, aby nebyl adresář dat přístupný, nebo přesunout adresář dat mimo kořenovou složku dokumentů webového serveru." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Upozornění nastavení" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Zkonzultujte, prosím, průvodce instalací." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Schází modul 'fileinfo'" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Locale nefunguje" +msgstr "" #: templates/admin.php:63 #, php-format @@ -223,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Server ownCloud nemůže nastavit locale systému na %s. Můžete tedy mít problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat potřebné balíčky pro podporu %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Spojení s internetem nefujguje" +msgstr "" #: templates/admin.php:78 msgid "" @@ -237,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Server ownCloud nemá funkční spojení s internetem. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích, nebo instalace aplikací třetích stran nefungují. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit internetové spojení pro tento server." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Spustit jednu úlohu s každou načtenou stránkou" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Sdílení" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Povolit API sdílení" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Povolit aplikacím používat API sdílení" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Povolit odkazy" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Povolit znovu-sdílení" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Povolit uživatelům sdílet s kýmkoliv" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Zabezpečení" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Vynutit HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Vynutí připojování klientů ownCloud skrze šifrované spojení." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Připojte se, prosím, k této instanci ownCloud skrze HTTPS pro povolení, nebo zakažte vynucení SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Záznam" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Úroveň záznamu" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Více" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Méně" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Verze" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -342,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Přidat Vaší aplikaci" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Více aplikací" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Vyberte aplikaci" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Více na stránce s aplikacemi na apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licencováno " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Aktualizovat" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Uživatelská dokumentace" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Dokumentace správce" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Online dokumentace" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Fórum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Placená podpora" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Používáte %s z %s dostupných" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Získat aplikace pro synchronizaci vašich souborů" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Znovu zobrazit průvodce prvním spuštěním" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Heslo" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Vaše heslo bylo změněno" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Vaše heslo nelze změnit" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Současné heslo" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nové heslo" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Změnit heslo" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Zobrazované jméno" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-mail" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Vaše e-mailová adresa" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Jazyk" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Pomoci s překladem" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Přihlašovací jméno" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Vytvořit" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Výchozí úložiště" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Neomezeně" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Jiná" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Úložiště" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "změnit zobrazované jméno" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "nastavit nové heslo" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Výchozí" +msgstr "" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 228f59ec1c..071fb551df 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2012. -# Tomáš Chvátal , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -21,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Selhalo smazání nastavení serveru" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Nastavení je v pořádku a spojení bylo navázáno." +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Konfigurace je v pořádku, ale spojení selhalo. Zkontrolujte, prosím, nastavení serveru a přihlašovací údaje." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Nastavení je neplatné. Zkontrolujte, prosím, záznam ownCloud pro další podrobnosti." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Mazání selhalo." +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Převzít nastavení z nedávného nastavení serveru?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Ponechat nastavení?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Nelze přidat nastavení serveru" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Test spojení byl úspěšný" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Test spojení selhal" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Opravdu si přejete smazat současné nastavení serveru?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Potvrdit smazání" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Varování: Aplikace user_ldap a user_webdavauth nejsou kompatibilní. Může nastávat neočekávané chování. Požádejte, prosím, správce systému aby jednu z nich zakázal." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Varování: není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému aby jej nainstaloval." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Nastavení serveru" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Přidat nastavení serveru" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Počítač" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Základní DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Jedna základní DN na řádku" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Uživatelské DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN klentského uživatele ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte údaje DN and Heslo prázdné." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Heslo" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Pro anonymní přístup, ponechte údaje DN and heslo prázdné." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtr přihlášení uživatelů" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Určuje použitý filtr, při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "použijte zástupný vzor %%uid, např. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Filtr uživatelských seznamů" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Určuje použitý filtr, pro získávaní uživatelů." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "bez zástupných znaků, např. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filtr skupin" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Určuje použitý filtr, pro získávaní skupin." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "bez zástupných znaků, např. \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Nastavení spojení" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Nastavení aktivní" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Pokud není zaškrtnuto, bude nastavení přeskočeno." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Záložní (kopie) hostitel" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Zadejte volitelného záložního hostitele. Musí to být kopie hlavního serveru LDAP/AD." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Záložní (kopie) port" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Zakázat hlavní serveru" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Při zapnutí se ownCloud připojí pouze k záložnímu serveru" +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Použít TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Nepoužívejte pro spojení LDAP, selže." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP server nerozlišující velikost znaků (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Vypnout ověřování SSL certifikátu." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud" +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Není doporučeno, pouze pro testovací účely." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "TTL vyrovnávací paměti" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "ve vteřinách. Změna vyprázdní vyrovnávací paměť." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Nastavení adresáře" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Pole pro zobrazované jméno uživatele" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atribut LDAP použitý k vytvoření jména uživatele ownCloud" +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Základní uživatelský strom" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Jedna uživatelská základní DN na řádku" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Atributy vyhledávání uživatelů" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Volitelné, atribut na řádku" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Pole pro zobrazení jména skupiny" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atribut LDAP použitý k vytvoření jména skupiny ownCloud" +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Základní skupinový strom" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Jedna skupinová základní DN na řádku" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atributy vyhledávání skupin" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Asociace člena skupiny" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Speciální atributy" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Pole pro kvótu" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Výchozí kvóta" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "v bajtech" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Pole e-mailu" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Pravidlo pojmenování domovské složky uživatele" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Vyzkoušet nastavení" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Nápověda" +msgstr "" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 50d8ae572f..66dd62f777 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -3,14 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: ubuntucymraeg \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Rhannodd defnyddiwr %s ffeil â chi" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Rhannodd defnyddiwr %s blygell â chi" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Rhannodd defnyddiwr %s ffeil \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Rhannodd defnyddiwr %s blygell \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Math o gategori heb ei ddarparu." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Dim categori i'w ychwanegu?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Mae'r categori hwn eisoes yn bodoli: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Math o wrthrych heb ei ddarparu." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID heb ei ddarparu." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Gwall wrth ychwanegu %s at ffefrynnau." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Ni ddewiswyd categorïau i'w dileu." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Gwall wrth dynnu %s o ffefrynnau." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Sul" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Llun" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Mawrth" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Mercher" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Iau" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Gwener" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sadwrn" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Ionawr" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Chwefror" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Mawrth" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Ebrill" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mai" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Mehefin" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Gorffennaf" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Awst" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Medi" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Hydref" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Tachwedd" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Rhagfyr" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Gosodiadau" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "eiliad yn ôl" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 munud yn ôl" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} munud yn ôl" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 awr yn ôl" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} awr yn ôl" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "heddiw" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "ddoe" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} diwrnod yn ôl" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "mis diwethaf" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} mis yn ôl" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "misoedd yn ôl" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "y llynedd" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "blwyddyn yn ôl" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Iawn" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Diddymu" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Dewisiwch" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ie" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Na" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -244,363 +243,363 @@ msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Gwall" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Nid yw enw'r pecyn wedi cael ei nodi." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Nid yw'r ffeil ofynnol {file} wedi ei gosod!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Rhannwyd" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Rhannu" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Gwall wrth rannu" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Gwall wrth ddad-rannu" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Gwall wrth newid caniatâd" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Rhannwyd â chi a'r grŵp {group} gan {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Rhannwyd â chi gan {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Rhannu gyda" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Dolen ar gyfer rhannu" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Diogelu cyfrinair" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Cyfrinair" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "E-bostio dolen at berson" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Anfon" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Gosod dyddiad dod i ben" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Dyddiad dod i ben" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Rhannu drwy e-bost:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Heb ganfod pobl" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Does dim hawl ail-rannu" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Rhannwyd yn {item} â {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Dad-rannu" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "yn gallu golygu" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "rheolaeth mynediad" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "creu" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "diweddaru" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "dileu" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "rhannu" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Diogelwyd â chyfrinair" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Gwall wrth ddad-osod dyddiad dod i ben" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Gwall wrth osod dyddiad dod i ben" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Yn anfon ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Anfonwyd yr e-bost" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ailosod cyfrinair ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Ailosod anfon e-bost." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Methodd y cais!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Enw defnyddiwr" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Gwneud cais i ailosod" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Ailosodwyd eich cyfrinair" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "I'r dudalen mewngofnodi" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Cyfrinair newydd" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Ailosod cyfrinair" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personol" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Defnyddwyr" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Pecynnau" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Gweinyddu" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Cymorth" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Mynediad wedi'i wahardd" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Methwyd canfod cwmwl" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Golygu categorïau" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Ychwanegu" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Rhybudd Diogelwch" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Diweddarwch eich PHP i ddefnyddio ownCloud yn ddiogel." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Mwy na thebyg fod modd cyrraeddd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. " +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y ddogfennaeth." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Crewch gyfrif gweinyddol" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Uwch" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Plygell data" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Cyflunio'r gronfa ddata" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "ddefnyddir" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Defnyddiwr cronfa ddata" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Cyfrinair cronfa ddata" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Enw cronfa ddata" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Tablespace cronfa ddata" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Gwesteiwr cronfa ddata" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Gorffen sefydlu" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "gwasanaethau gwe a reolir gennych" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Allgofnodi" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Gwrthodwyd mewngofnodi awtomatig!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif fod yn anniogel!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Wedi colli'ch cyfrinair?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "cofio" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Mewngofnodi" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Mewngofnodiadau Amgen" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "blaenorol" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "nesaf" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Yn diweddaru owncloud i fersiwn %s, gall hyn gymryd amser." +msgstr "" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 70c6267162..f849e80813 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -21,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Methwyd symud %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Methu ailenwi ffeil" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Ni lwythwyd ffeil i fyny" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Plygell dros dro yn eisiau" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Methwyd ysgrifennu i'r ddisg" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Dim digon o le storio ar gael" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Cyfeiriadur annilys." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Ffeiliau" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Rhannu" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Dileu'n barhaol" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Dileu" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Ailenwi" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "I ddod" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} yn bodoli'n barod" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "amnewid" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "awgrymu enw" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "diddymu" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "newidiwyd {new_name} yn lle {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "dadwneud" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "cyflawni gweithred dileu" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 ffeil yn llwytho i fyny" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "ffeiliau'n llwytho i fyny" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "Mae '.' yn enw ffeil annilys." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Does dim hawl cael enw ffeil gwag." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Methu llwytho'ch ffeil i fyny gan ei fod yn gyferiadur neu'n cynnwys 0 beit" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Dim digon o le ar gael" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Diddymwyd llwytho i fyny." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Does dim hawl cael URL gwag." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Gwall" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Enw" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Maint" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Addaswyd" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 blygell" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} plygell" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 ffeil" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} ffeil" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Llwytho i fyny" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Trafod ffeiliau" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maint mwyaf llwytho i fyny" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "mwyaf. posib:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Angen ar gyfer llwytho mwy nag un ffeil neu blygell i lawr yr un pryd." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Galluogi llwytho i lawr ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 yn ddiderfyn" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maint mewnbynnu mwyaf ffeiliau ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Cadw" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Newydd" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Ffeil destun" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Plygell" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Dolen o" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Ffeiliau ddilewyd" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Diddymu llwytho i fyny" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Llwytho i lawr" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Dad-rannu" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Maint llwytho i fyny'n rhy fawr" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Sganio cyfredol" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Uwchraddio storfa system ffeiliau..." +msgstr "" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index 6ffe72043a..bb5e3cedbe 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index b0a5c89c86..5c7d1863fb 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -99,12 +99,12 @@ msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Defnyddwyr" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Dileu" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 01a7b7ff6e..2851f05a3b 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -3,14 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" -"PO-Revision-Date: 2013-04-21 15:00+0000\n" -"Last-Translator: ubuntucymraeg \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Cyfrinair" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Cyflwyno" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "Rhannodd %s blygell %s â chi" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "Rhannodd %s ffeil %s â chi" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Llwytho i lawr" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Does dim rhagolwg ar gael ar gyfer" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "gwasanaethau gwe a reolir gennych" +msgstr "" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 5e9bb4d912..ec207c9998 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -3,14 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" -"PO-Revision-Date: 2013-04-22 21:10+0000\n" -"Last-Translator: ubuntucymraeg \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Methwyd dileu %s yn barhaol" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Methwyd adfer %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "gweithrediad adfer" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Gwall" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "dileu ffeil yn barhaol" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Dileu'n barhaol" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Enw" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Wedi dileu" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 blygell" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} plygell" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 ffeil" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} ffeil" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Does dim byd yma. Mae eich bin sbwriel yn wag!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Adfer" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Dileu" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Ffeiliau Ddilewyd" +msgstr "" diff --git a/l10n/cy_GB/files_versions.po b/l10n/cy_GB/files_versions.po index 0f19e914bb..2d178293a3 100644 --- a/l10n/cy_GB/files_versions.po +++ b/l10n/cy_GB/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 8a34f9cc6b..88ec7f659a 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -3,14 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" -"PO-Revision-Date: 2013-04-21 19:21+0000\n" -"Last-Translator: ubuntucymraeg \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Cymorth" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personol" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Gosodiadau" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Defnyddwyr" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Pecynnau" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Gweinyddu" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Mae llwytho ZIP wedi ei ddiffodd." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Mae angen llwytho ffeiliau i lawr fesul un." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Nôl i Ffeiliau" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "methwyd pennu" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Nid yw'r pecyn wedi'i alluogi" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Gwall dilysu" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Ffeiliau" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Testun" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Delweddau" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Creu enw defnyddiwr i'r gweinyddwr." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Gosod cyfrinair y gweinyddwr." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s rhowch enw defnyddiwr y gronfa ddata." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s rhowch enw'r gronfa ddata." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s gosod gwesteiwr y gronfa ddata." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Enw a/neu gyfrinair PostgreSQL annilys" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Enw a/neu gyfrinair Oracle annilys" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Enw a/neu gyfrinair MySQL annilys" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Gwall DB: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Gollwng y defnyddiwr hwn o MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Gollwng y defnyddiwr hwn o MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Enw a/neu gyfrinair MS SQL annilys: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Gwiriwch y canllawiau gosod eto." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "eiliad yn ôl" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 munud yn ôl" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d munud yn ôl" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 awr yn ôl" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d awr yn ôl" +msgstr "" #: template.php:118 msgid "today" -msgstr "heddiw" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "ddoe" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d diwrnod yn ôl" +msgstr "" #: template.php:121 msgid "last month" -msgstr "mis diwethaf" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d mis yn ôl" +msgstr "" #: template.php:123 msgid "last year" -msgstr "y llynedd" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "blwyddyn yn ôl" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s ar gael. Mwy o wybodaeth" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "cyfredol" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "gwirio am ddiweddariadau wedi'i analluogi" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Methu canfod categori \"%s\"" +msgstr "" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 9370aba6c7..488542b376 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Gwall dilysu" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -68,7 +68,7 @@ msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Cais annilys" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -106,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Gwall" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -122,7 +122,7 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Yn cadw..." +msgstr "" #: js/users.js:43 msgid "deleted" @@ -130,7 +130,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "dadwneud" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -147,7 +147,7 @@ msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Dileu" +msgstr "" #: js/users.js:262 msgid "add group" @@ -171,7 +171,7 @@ msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Rhybudd Diogelwch" +msgstr "" #: templates/admin.php:18 msgid "" @@ -190,12 +190,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Gwiriwch y canllawiau gosod eto." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -401,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Cyfrinair" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -417,7 +417,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Cyfrinair newydd" +msgstr "" #: templates/personal.php:44 msgid "Change password" @@ -473,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Arall" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 60042b502e..219d050cf6 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" -"PO-Revision-Date: 2013-04-21 19:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Methwyd dileu" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Cyfrinair" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Cymorth" +msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index be0d00c663..1bab7efe06 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -3,23 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bawl , 2013 -# cronner , 2012 -# Frederik Lassen , 2013 -# mikkel_ilu , 2011, 2012 -# Morten Juhl-Johansen Zölde-Fejér , 2011-2013 -# Ole Holm Frandsen , 2012 -# Pascal d'Hermilly , 2011 -# rpaasch , 2013 -# muunsim , 2012 -# Thomas Tanghus , 2012 -# Thomas Tanghus , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -31,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Bruger %s delte en fil med dig" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Bruger %s delte en mappe med dig" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Bruger %s delte filen \"%s\" med dig. Den kan hentes her: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Kategori typen ikke er fastsat." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Ingen kategori at tilføje?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Kategorien eksisterer allerede: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Object type ikke er fastsat." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID ikke oplyst." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Fejl ved tilføjelse af %s til favoritter." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Ingen kategorier valgt" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Fejl ved fjernelse af %s fra favoritter." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Søndag" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Mandag" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Tirsdag" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Onsdag" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Torsdag" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Fredag" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Lørdag" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februar" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Marts" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "April" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maj" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Juni" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Juli" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "August" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "December" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Indstillinger" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sekunder siden" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minut siden" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minutter siden" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 time siden" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} timer siden" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "i dag" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "i går" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} dage siden" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "sidste måned" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} måneder siden" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "måneder siden" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "sidste år" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "år siden" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "OK" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Fortryd" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Vælg" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ja" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nej" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Objekttypen er ikke angivet." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -254,363 +243,363 @@ msgstr "Objekttypen er ikke angivet." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Fejl" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Den app navn er ikke angivet." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Den krævede fil {file} er ikke installeret!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Delt" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Del" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Fejl under deling" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Fejl under annullering af deling" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Fejl under justering af rettigheder" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Delt med dig og gruppen {group} af {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Delt med dig af {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Del med" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Del med link" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Beskyt med adgangskode" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Kodeord" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "E-mail link til person" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Send" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Vælg udløbsdato" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Udløbsdato" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Del via email:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Ingen personer fundet" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Videredeling ikke tilladt" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Delt i {item} med {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Fjern deling" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "kan redigere" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "Adgangskontrol" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "opret" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "opdater" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "slet" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "del" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Beskyttet med adgangskode" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Fejl ved fjernelse af udløbsdato" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Fejl under sætning af udløbsdato" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Sender ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "E-mail afsendt" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til ownClouds community." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Nulstil ownCloud kodeord" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Anvend følgende link til at nulstille din adgangskode: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Du vil modtage et link til at nulstille dit kodeord via email." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Reset-mail afsendt." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Anmodningen mislykkedes!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Brugernavn" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Anmod om nulstilling" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Dit kodeord blev nulstillet" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Til login-side" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nyt kodeord" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Nulstil kodeord" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personlig" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Brugere" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Apps" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Hjælp" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Adgang forbudt" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Sky ikke fundet" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Rediger kategorier" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Tilføj" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Sikkerhedsadvarsel" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Din PHP-version er sårbar overfor et NULL Byte angreb (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Opdater venligs din PHP-installation for at kunne bruge ownCloud sikkert." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Ingen sikker tilfældighedsgenerator til tal er tilgængelig. Aktiver venligst OpenSSL udvidelsen." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Uden en sikker tilfældighedsgenerator til tal kan en angriber måske gætte dit gendan kodeord og overtage din konto" +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet fordi .htaccess filen ikke virker." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "For at vide mere om hvordan du konfigurerer din server ordentligt, se venligst dokumentationen." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Opret en administratorkonto" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avanceret" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Datamappe" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Konfigurer databasen" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "vil blive brugt" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Databasebruger" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Databasekodeord" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Navn på database" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Database tabelplads" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Databasehost" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Afslut opsætning" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Webtjenester under din kontrol" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Log ud" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatisk login afvist!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Hvis du ikke har ændret din adgangskode for nylig, har nogen muligvis tiltvunget sig adgang til din konto!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Skift adgangskode for at sikre din konto igen." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Mistet dit kodeord?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "husk" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Log ind" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternative logins" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "forrige" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "næste" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Opdatere Owncloud til version %s, dette kan tage et stykke tid." +msgstr "" diff --git a/l10n/da/files.po b/l10n/da/files.po index fb90d61529..45ec994b46 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -3,23 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# cronner , 2012 -# Frederik Lassen , 2013 -# Morten Juhl-Johansen Zölde-Fejér , 2011-2013 -# Ole Holm Frandsen , 2012-2013 -# osos , 2012 -# Pascal d'Hermilly , 2011 -# muunsim , 2012 -# cronner , 2013 -# Thomas Tanghus , 2012 -# Thomas Tanghus , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" -"Last-Translator: Ole Holm Frandsen \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Kunne ikke flytte %s - der findes allerede en fil med dette navn" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Kunne ikke flytte %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Kunne ikke omdøbe fil" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Ingen fil blev uploadet. Ukendt fejl." +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Der er ingen fejl, filen blev uploadet med success" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Den uploadede file blev kun delvist uploadet" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Ingen fil blev uploadet" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Mangler en midlertidig mappe" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Fejl ved skrivning til disk." +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Der er ikke nok plads til rådlighed" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Ugyldig mappe." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Filer" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Del" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Slet permanent" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Slet" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Omdøb" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Afventer" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} eksisterer allerede" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "erstat" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "foreslå navn" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "fortryd" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "erstattede {new_name} med {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "fortryd" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "udfør slet operation" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 fil uploades" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "uploader filer" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' er et ugyldigt filnavn." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Filnavnet kan ikke stå tomt." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "ikke nok tilgængelig ledig plads " +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Upload afbrudt." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URLen kan ikke være tom." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Fejl" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Navn" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Størrelse" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Ændret" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 mappe" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} mapper" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 fil" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} filer" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Upload" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Filhåndtering" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksimal upload-størrelse" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max. mulige: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Nødvendigt for at kunne downloade mapper og flere filer ad gangen." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Muliggør ZIP-download" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 er ubegrænset" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maksimal størrelse på ZIP filer" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Gem" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Ny" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Tekstfil" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Mappe" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Fra link" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Slettede filer" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Fortryd upload" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Du har ikke skriverettigheder her." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Her er tomt. Upload noget!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Download" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Fjern deling" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Upload for stor" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Filerne bliver indlæst, vent venligst." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Indlæser" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Opgraderer filsystems cachen..." +msgstr "" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 8c8605731d..a3de747673 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Frederik Lassen , 2013. -# Morten Juhl-Johansen Zölde-Fejér , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -22,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Kryptering" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Fil kryptering aktiveret." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "De følgende filtyper vil ikke blive krypteret:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Ekskluder de følgende fil typer fra kryptering:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ingen" +msgstr "" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index bbe1780ee3..7feac6c3c9 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -3,17 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bawl , 2013 -# cronner , 2012 -# Morten Juhl-Johansen Zölde-Fejér , 2012 -# Ole Holm Frandsen , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" -"PO-Revision-Date: 2013-04-24 18:30+0000\n" -"Last-Translator: Ole Holm Frandsen \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Adgang godkendt" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Fejl ved konfiguration af Dropbox plads" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Godkend adgang" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Fejl ved konfiguration af Google Drive plads" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Advarsel: Understøttelsen for Curl i PHP er enten ikke aktiveret eller ikke installeret. Det er ikke muligt, at montere ownCloud / WebDAV eller GoogleDrive. Spørg din system administrator om at installere det. " +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Ekstern opbevaring" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Mappenavn" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Eksternt lager" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Opsætning" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Valgmuligheder" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Kan anvendes" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Tilføj lager" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Ingen sat" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Alle brugere" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupper" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Brugere" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Slet" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Aktiver ekstern opbevaring for brugere" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Tillad brugere at montere deres egne eksterne opbevaring" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL-rodcertifikater" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importer rodcertifikat" +msgstr "" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 95f966c2f2..d9a75e6aab 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Morten Juhl-Johansen Zölde-Fejér , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Kodeord" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Send" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s delte mappen %s med dig" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s delte filen %s med dig" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Download" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Forhåndsvisning ikke tilgængelig for" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "Webtjenester under din kontrol" +msgstr "" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index d0728a8d9c..977bc56f61 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bawl , 2013. -# Frederik Lassen , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Kunne ikke slette %s permanent" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Kunne ikke gendanne %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "udfør gendannelsesoperation" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Fejl" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "slet fil permanent" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Slet permanent" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Navn" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Slettet" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 mappe" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} mapper" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 fil" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} filer" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Intet at se her. Din papirkurv er tom!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Gendan" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Slet" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Slettede filer" +msgstr "" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 7ceccbf261..ca8180c9af 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Frederik Lassen , 2013. -# Morten Juhl-Johansen Zölde-Fejér , 2012. -# , 2012. -# Thomas , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -24,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Kunne ikke genskabe: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "success" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Filen %s blev genskabt til version: %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "fejl" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Filen %s blev genskabt til version: %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Ingen gamle version tilgængelige" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Ingen sti specificeret" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versioner" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Genskab en fil til en tidligere version ved at klikke på denne genskab knap." +msgstr "" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index f14b4dd258..7fc23f5596 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# cronner , 2012 -# Frederik Lassen , 2013 -# Morten Juhl-Johansen Zölde-Fejér , 2012-2013 -# osos , 2012 -# cronner , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -24,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Hjælp" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personlig" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Indstillinger" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Brugere" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Apps" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP-download er slået fra." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Filer skal downloades en for en." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Tilbage til Filer" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "De markerede filer er for store til at generere en ZIP-fil." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "kunne ikke fastslås" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Programmet er ikke aktiveret" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Adgangsfejl" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Adgang er udløbet. Genindlæs siden." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Filer" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "SMS" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Billeder" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Angiv et admin brugernavn." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Angiv et admin kodeord." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s indtast database brugernavnet." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s indtast database navnet." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s du må ikke bruge punktummer i databasenavnet." +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s sæt database værten." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt." +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt." +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL brugernavn og/eller kodeord er ikke gyldigt." - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Databasefejl: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Fejlende kommando var: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL brugeren '%s'@'localhost' eksisterer allerede." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Slet denne bruger fra MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL brugeren '%s'@'%%' eksisterer allerede." +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Slet denne bruger fra MySQL" +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Dobbelttjek venligst installations vejledningerne." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sekunder siden" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minut siden" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minutter siden" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 time siden" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d timer siden" +msgstr "" #: template.php:118 msgid "today" -msgstr "I dag" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "I går" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d dage siden" +msgstr "" #: template.php:121 msgid "last month" -msgstr "Sidste måned" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d måneder siden" +msgstr "" #: template.php:123 msgid "last year" -msgstr "Sidste år" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "år siden" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s er tilgængelig. Få mere information" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "opdateret" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "Check for opdateringer er deaktiveret" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Kunne ikke finde kategorien \"%s\"" +msgstr "" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index d1c5b496da..dd8df0003d 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -3,24 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# cronner , 2012 -# Frederik Lassen , 2013 -# Robin Appelman , 2012 -# mikkel_ilu , 2011 -# Morten Juhl-Johansen Zölde-Fejér , 2011-2013 -# Ole Holm Frandsen , 2012 -# Pascal d'Hermilly , 2011 -# muunsim , 2012 -# ressel , 2012-2013 -# cronner , 2013 -# Thomas Tanghus , 2012 -# Thomas Tanghus , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -31,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Kunne ikke indlæse listen fra App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Adgangsfejl" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -44,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Kunne ikke skifte skærmnavn" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Gruppen findes allerede" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Gruppen kan ikke oprettes" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Applikationen kunne ikke aktiveres." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email adresse gemt" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Ugyldig email adresse" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Gruppen kan ikke slettes" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Bruger kan ikke slettes" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Sprog ændret" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Ugyldig forespørgsel" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administratorer kan ikke fjerne dem selv fra admin gruppen" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Brugeren kan ikke tilføjes til gruppen %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Brugeren kan ikke fjernes fra gruppen %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Kunne ikke opdatere app'en." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Opdatér til {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Deaktiver" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Aktiver" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Vent venligst..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Fejl" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Opdaterer...." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Der opstod en fejl under app opgraderingen" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Opdateret" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Gemmer..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "Slettet" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "fortryd" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Kan ikke fjerne bruger" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupper" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Gruppe Administrator" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Slet" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "Tilføj gruppe" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Et gyldigt brugernavn skal angives" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Fejl ved oprettelse af bruger" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "En gyldig adgangskode skal angives" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Dansk" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Sikkerhedsadvarsel" +msgstr "" #: templates/admin.php:18 msgid "" @@ -192,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen som ownCloud leverer virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver på en måske så data mappen ikke længere er tilgængelig eller at du flytter data mappen uden for webserverens dokument rod. " +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Opsætnings Advarsel" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Dobbelttjek venligst installations vejledningerne." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Module 'fileinfo' mangler" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Landestandard fungerer ikke" +msgstr "" #: templates/admin.php:63 #, php-format @@ -229,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Denne ownCloud server kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Internetforbindelse fungerer ikke" +msgstr "" #: templates/admin.php:78 msgid "" @@ -243,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af eksterne applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker alle ownClouds funktioner." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Udføre en opgave med hver side indlæst" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php er registreret hos en webcron service. Kald cron.php side i owncloud rod en gang i minuttet over HTTP." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Brug system cron service. Kald cron.php filen i owncloud mappe via et system cronjob en gang i minuttet." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Deling" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Aktiver Share API" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Tillad apps til at bruge Share API" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Tillad links" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Tillad brugere at dele elementer til offentligheden med links" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Tillad videredeling" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Tillad brugere at dele elementer delt med dem igen" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Tillad brugere at dele med alle" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Tillad brugere at kun dele med brugerne i deres grupper" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Sikkerhed" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Gennemtving HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Håndhæver klienter at oprette forbindelse til ownCloud via en krypteret forbindelse." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Opret forbindelse til denne ownCloud enhed via HTTPS for at aktivere eller deaktivere SSL håndhævelse." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Log" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Log niveau" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Mere" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Mindre" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Version" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -348,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Udviklet af ownClouds community, og kildekoden er underlagt licensen AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Tilføj din App" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Flere Apps" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Vælg en App" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Se applikationens side på apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licenseret af " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Opdater" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Brugerdokumentation" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Administrator Dokumentation" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Online dokumentation" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Kommerciel support" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Du har brugt %s af den tilgængelige %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Hent applikationerne for at synkronisere dine filer" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Vis Første Kørsel Guiden igen" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Kodeord" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Din adgangskode blev ændret" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Ude af stand til at ændre dit kodeord" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Nuværende adgangskode" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Ny adgangskode" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Skift kodeord" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Skærmnavn" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Din emailadresse" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Indtast en emailadresse for at kunne få påmindelse om adgangskode" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Sprog" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Hjælp med oversættelsen" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Loginnavn" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Ny" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Standard opbevaring" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Ubegrænset" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Andet" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Opbevaring" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "skift skærmnavn" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "skift kodeord" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Standard" +msgstr "" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 98e5a1e4f0..696f6b9308 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# Frederik Lassen , 2012. -# Morten Juhl-Johansen Zölde-Fejér , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -44,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Fejl ved sletning" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -97,16 +92,16 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Host" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Base DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" @@ -114,11 +109,11 @@ msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Bruger DN" +msgstr "" #: templates/settings.php:45 msgid "" @@ -129,15 +124,15 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Kodeord" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "For anonym adgang, skal du lade DN og Adgangskode tomme." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Bruger Login Filter" +msgstr "" #: templates/settings.php:53 #, php-format @@ -153,11 +148,11 @@ msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Brugerliste Filter" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definere filteret der bruges ved indlæsning af brugere." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." @@ -165,11 +160,11 @@ msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Gruppe Filter" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definere filteret der bruges når der indlæses grupper." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." @@ -189,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -215,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Brug TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -227,7 +222,7 @@ msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Deaktiver SSL certifikat validering" +msgstr "" #: templates/settings.php:77 msgid "" @@ -237,7 +232,7 @@ msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Anbefales ikke, brug kun for at teste." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -253,7 +248,7 @@ msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "User Display Name Field" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." @@ -261,7 +256,7 @@ msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Base Bruger Træ" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" @@ -285,7 +280,7 @@ msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Base Group Tree" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" @@ -297,7 +292,7 @@ msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Group-Member association" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -313,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "i bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -335,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Hjælp" +msgstr "" diff --git a/l10n/de/core.po b/l10n/de/core.po index eb400afa69..c33df9a70e 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -3,31 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# goeck , 2011-2012 -# infinity8 , 2011 -# Mirodin , 2012 -# , 2011 -# I Robot , 2012-2013 -# I Robot , 2012 -# Jan-Christoph Borchardt , 2011 -# Lukas Reschke , 2013 -# fmms , 2012 -# Marcel Kühlhorn , 2012-2013 -# thiel , 2012 -# mike.f , 2012 -# JamFX , 2012 -# Phi Lieb <>, 2012 -# Susi <>, 2012 -# , 2012 -# , 2012 -# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: Lukas Reschke \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Der Nutzer %s hat eine Datei mit Dir geteilt" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "%s hat ein Verzeichnis mit Dir geteilt" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "%s hat die Datei \"%s\" mit Dir geteilt. Sie ist hier zum Download verfügbar: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "%s hat den Ordner \"%s\" mit Dir geteilt. Er ist hier zum Download verfügbar: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Kategorie nicht angegeben." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Keine Kategorie hinzuzufügen?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Die Kategorie '%s' existiert bereits." +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Objekttyp nicht angegeben." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID nicht angegeben." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Fehler beim Hinzufügen von %s zu den Favoriten." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Es wurde keine Kategorien zum Löschen ausgewählt." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Fehler beim Entfernen von %s von den Favoriten." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Sonntag" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Montag" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Dienstag" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Mittwoch" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Donnerstag" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Freitag" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Samstag" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februar" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "März" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "April" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mai" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Juni" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Juli" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "August" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Dezember" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Einstellungen" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "Gerade eben" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "vor einer Minute" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "Vor {minutes} Minuten" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "Vor einer Stunde" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "Vor {hours} Stunden" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "Heute" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "Gestern" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "Vor {days} Tag(en)" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "Letzten Monat" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "Vor {months} Monaten" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "Vor Monaten" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "Letztes Jahr" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "Vor Jahren" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "OK" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Abbrechen" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Auswählen" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ja" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nein" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Der Objekttyp ist nicht angegeben." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -261,363 +243,363 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Der App-Name ist nicht angegeben." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Die benötigte Datei {file} ist nicht installiert." +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Geteilt" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Teilen" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Fehler beim Teilen" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Fehler beim Aufheben der Teilung" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Fehler beim Ändern der Rechte" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "{owner} hat dies mit Dir und der Gruppe {group} geteilt" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner} hat dies mit Dir geteilt" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Teilen mit" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Über einen Link freigegeben" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Passwortschutz" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Passwort" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Link per E-Mail verschicken" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Senden" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Setze ein Ablaufdatum" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Ablaufdatum" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Über eine E-Mail teilen:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Niemand gefunden" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Weiterverteilen ist nicht erlaubt" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Für {user} in {item} freigegeben" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Freigabe aufheben" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "kann bearbeiten" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "Zugriffskontrolle" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "erstellen" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "aktualisieren" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "löschen" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "teilen" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Durch ein Passwort geschützt" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Fehler beim entfernen des Ablaufdatums" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Fehler beim Setzen des Ablaufdatums" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Sende ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "E-Mail wurde verschickt" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud-Passwort zurücksetzen" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Nutze den nachfolgenden Link, um Dein Passwort zurückzusetzen: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Die E-Mail zum Zurücksetzen wurde versendet." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Die Anfrage schlug fehl!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Benutzername" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Beantrage Zurücksetzung" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Dein Passwort wurde zurückgesetzt." +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Zur Login-Seite" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Neues Passwort" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Passwort zurücksetzen" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Persönlich" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Benutzer" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Anwendungen" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Hilfe" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Zugriff verboten" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud nicht gefunden" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Kategorien bearbeiten" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Hinzufügen" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Sicherheitswarnung" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Deine PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Bitte bringe deine PHP Installation auf den neuesten Stand, um ownCloud sicher nutzen zu können." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktiviere die PHP-Erweiterung für OpenSSL." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Konten zu übernehmen." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Dein Datenverzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Bitte lesen Sie die Dokumentation für Informationen, wie Sie Ihren Server konfigurieren." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Administrator-Konto anlegen" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Fortgeschritten" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Datenverzeichnis" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Datenbank einrichten" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "wird verwendet" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Datenbank-Benutzer" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Datenbank-Passwort" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Datenbank-Name" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Datenbank-Tablespace" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Datenbank-Host" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Installation abschließen" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Web-Services unter Ihrer Kontrolle" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Abmelden" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatischer Login zurückgewiesen!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Passwort vergessen?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "merken" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Einloggen" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternative Logins" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "Zurück" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "Weiter" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." +msgstr "" diff --git a/l10n/de/files.po b/l10n/de/files.po index 30997e1e89..30d723106a 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -3,34 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# goeck , 2012 -# Mirodin , 2012 -# I Robot , 2012-2013 -# I Robot , 2012 -# Jan-Christoph Borchardt , 2012 -# Jan-Christoph Borchardt , 2011 -# Jan-Christoph Borchardt , 2011 -# Lukas Reschke , 2012 -# fmms , 2012 -# Marcel Kühlhorn , 2012-2013 -# thiel , 2013 -# Michael Krell, 2012 -# piccobello , 2012 -# JamFX , 2012 -# Phi Lieb <>, 2012 -# I Robot , 2012 -# Thomas Müller <>, 2012 -# traductor , 2012 -# Linutux , 2013 -# kabum , 2013 -# kabum , 2013 -# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -42,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s konnte nicht verschoben werden - eine Datei mit diesem Namen existiert bereits." +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s konnte nicht verschoben werden" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Die Datei konnte nicht umbenannt werden" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Keine Datei hochgeladen. Unbekannter Fehler" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Datei fehlerfrei hochgeladen." +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Die Datei wurde nur teilweise hochgeladen." +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Es wurde keine Datei hochgeladen." +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Temporärer Ordner fehlt." +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Fehler beim Schreiben auf die Festplatte" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Nicht genug Speicherplatz verfügbar" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Ungültiges Verzeichnis." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Dateien" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Teilen" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Permanent löschen" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Löschen" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Umbenennen" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Ausstehend" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} existiert bereits" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "ersetzen" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "Name vorschlagen" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "abbrechen" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{old_name} ersetzt durch {new_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "rückgängig machen" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "Löschvorgang ausführen" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "Eine Datei wird hoch geladen" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "Dateien werden hoch geladen" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' ist kein gültiger Dateiname." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Der Dateiname darf nicht leer sein." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ihr Speicherplatz ist voll, Dateien können nicht mehr aktualisiert oder synchronisiert werden!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Ihr Speicherplatz ist fast aufgebraucht ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Nicht genug Speicherplatz verfügbar" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Upload abgebrochen." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Die URL darf nicht leer sein." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Name" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Größe" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Bearbeitet" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 Ordner" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} Ordner" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 Datei" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} Dateien" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Hochladen" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Dateibehandlung" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximale Upload-Größe" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maximal möglich:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP-Download aktivieren" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 bedeutet unbegrenzt" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maximale Größe für ZIP-Dateien" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Speichern" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Neu" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Textdatei" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Ordner" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Von einem Link" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Gelöschte Dateien" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Upload abbrechen" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Du besitzt hier keine Schreib-Berechtigung." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Alles leer. Lade etwas hoch!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Herunterladen" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Nicht mehr freigeben" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Upload zu groß" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Dateien werden gescannt, bitte warten." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Scanne" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Dateisystem-Cache wird aktualisiert ..." +msgstr "" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 9e734d80a3..35fe2acf15 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Marcel Kühlhorn , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Verschlüsselung" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Dateiverschlüsselung ist aktiviert" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Die folgenden Dateitypen werden nicht verschlüsselt:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Schließe die folgenden Dateitypen von der Verschlüsselung aus:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Keine" +msgstr "" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index d179bb9720..84366b9a14 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mirodin , 2012 -# I Robot , 2012 -# I Robot , 2012 -# stefanniedermann , 2013 -# I Robot , 2012 -# traductor , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -25,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Zugriff gestattet" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Fehler beim Einrichten von Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Zugriff gestatten" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Fehler beim Einrichten von Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator." +msgstr "" #: lib/config.php:437 msgid "" @@ -65,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Externer Speicher" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Ordnername" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Externer Speicher" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Optionen" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Zutreffend" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Speicher hinzufügen" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Nicht definiert" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Alle Benutzer" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Gruppen" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Benutzer" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Löschen" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Externen Speicher für Benutzer aktivieren" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL-Root-Zertifikate" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Root-Zertifikate importieren" +msgstr "" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index d3e9a36763..b1fa4f9419 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# I Robot , 2012. -# , 2012. -# , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -24,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Passwort" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Absenden" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s hat den Ordner %s mit Dir geteilt" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s hat die Datei %s mit Dir geteilt" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Download" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Es ist keine Vorschau verfügbar für" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "Web-Services unter Deiner Kontrolle" +msgstr "" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index e4aa758e23..d3c5ba3fe3 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -3,17 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# I Robot , 2013 -# Marcel Kühlhorn , 2013 -# Mirodin , 2013 -# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:03+0200\n" -"PO-Revision-Date: 2013-04-17 07:26+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Konnte %s nicht dauerhaft löschen" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Konnte %s nicht wiederherstellen" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Endgültig löschen" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Name" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "gelöscht" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 Ordner" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} Ordner" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 Datei" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} Dateien" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Nichts zu löschen, der Papierkorb ist leer!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Wiederherstellen" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Löschen" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Gelöschte Dateien" +msgstr "" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index fd4ea22a0e..e2b27c15df 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# I Robot , 2012. -# , 2012. -# Marcel Kühlhorn , 2013. -# , 2012. -# , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -27,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Konnte %s nicht zurücksetzen" +msgstr "" #: history.php:40 msgid "success" -msgstr "Erfolgreich" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Datei %s wurde auf Version %s zurückgesetzt" +msgstr "" #: history.php:49 msgid "failure" -msgstr "Fehlgeschlagen" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Datei %s konnte nicht auf Version %s zurückgesetzt werden" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Keine älteren Versionen verfügbar" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Kein Pfad angegeben" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versionen" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Setze eine Datei durch klicken auf den Zurücksetzen Button zurück" +msgstr "" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 6e43319234..b52f7b5183 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -3,22 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mirodin , 2012 -# I Robot , 2013 -# I Robot , 2012 -# Jan-Christoph Borchardt , 2012 -# Marcel Kühlhorn , 2012-2013 -# Phi Lieb <>, 2012 -# stefanniedermann , 2013 -# I Robot , 2012 -# traductor , 2012 -# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -29,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Hilfe" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Persönlich" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Einstellungen" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Benutzer" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Apps" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administrator" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Der ZIP-Download ist deaktiviert." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Die Dateien müssen einzeln heruntergeladen werden." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Zurück zu \"Dateien\"" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "konnte nicht festgestellt werden" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Die Anwendung ist nicht aktiviert" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Authentifizierungs-Fehler" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token abgelaufen. Bitte lade die Seite neu." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Dateien" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Text" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Bilder" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Setze Administrator Benutzername." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Setze Administrator Passwort" +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s gib den Datenbank-Benutzernamen an." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s gib den Datenbank-Namen an." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s setze den Datenbank-Host" +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Du musst entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle Benutzername und/oder Passwort ungültig" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL Benutzername und/oder Passwort ungültig" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "DB Fehler: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Fehlerhafter Befehl war: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Lösche diesen Benutzer von MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Lösche diesen Benutzer aus MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL Benutzername und/oder Password ungültig: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfe die Installationsanleitungen." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "Gerade eben" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "Vor einer Minute" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "Vor einer Stunde" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "Vor %d Stunden" +msgstr "" #: template.php:118 msgid "today" -msgstr "Heute" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "Gestern" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "Vor %d Tag(en)" +msgstr "" #: template.php:121 msgid "last month" -msgstr "Letzten Monat" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "Vor %d Monaten" +msgstr "" #: template.php:123 msgid "last year" -msgstr "Letztes Jahr" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "Vor Jahren" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s ist verfügbar. Weitere Informationen" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "aktuell" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "Die Update-Überprüfung ist ausgeschaltet" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." +msgstr "" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 6b3a20aa3a..19f5b89667 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -3,32 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# goeck , 2011, 2012 -# Mirodin , 2012 -# Robin Appelman , 2012 -# I Robot , 2012-2013 -# I Robot , 2012 -# Jan-Christoph Borchardt , 2011 -# Jan T , 2012 -# Lukas Reschke , 2012 -# fmms , 2012 -# Marcel Kühlhorn , 2012-2013 -# thiel , 2012 -# AndryXY , 2012 -# piccobello , 2012 -# JamFX , 2012 -# Phi Lieb <>, 2012 -# I Robot , 2012 -# traductor , 2012 -# Mirodin , 2013 -# kabum , 2013 -# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -39,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Fehler bei der Anmeldung" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -52,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Das Ändern des Anzeigenamens ist nicht möglich" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Gruppe existiert bereits" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Gruppe konnte nicht angelegt werden" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "App konnte nicht aktiviert werden." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-Mail Adresse gespeichert" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Ungültige E-Mail Adresse" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Gruppe konnte nicht gelöscht werden" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Benutzer konnte nicht gelöscht werden" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Sprache geändert" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Ungültige Anfrage" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administratoren können sich nicht selbst aus der Admin-Gruppe löschen." +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Die App konnte nicht aktualisiert werden." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Aktualisiere zu {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Deaktivieren" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Aktivieren" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Bitte warten..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Aktualisierung..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Fehler beim Aktualisieren der App" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Aktualisiert" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Speichern..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "gelöscht" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "rückgängig machen" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Benutzer konnte nicht entfernt werden." +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Gruppen" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Gruppenadministrator" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Löschen" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "Gruppe hinzufügen" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Es muss ein gültiger Benutzername angegeben werden" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Es muss ein gültiges Passwort angegeben werden" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Deutsch (Persönlich)" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Sicherheitswarnung" +msgstr "" #: templates/admin.php:18 msgid "" @@ -200,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Dein Datenverzeichnis und Deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass Du Deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass Du Dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Einrichtungswarnung" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Installationsanleitungen." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Modul 'fileinfo' fehlt " +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Ländereinstellung funktioniert nicht" +msgstr "" #: templates/admin.php:63 #, php-format @@ -237,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf Deinem System zu installieren." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Keine Netzwerkverbindung" +msgstr "" #: templates/admin.php:78 msgid "" @@ -251,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Dieser ownCloud Server hat keine funktionierende Netzwerkverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Netzwerkverbindung für diesen Server zu aktivieren wenn Du alle Funktionen von ownCloud nutzen möchtest." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php ist an einem Webcron-Service registriert. Die cron.php Seite wird einmal pro Minute über http abgerufen." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Nutze den Cron Systemdienst. Rufe die Datei cron.php im owncloud Ordner einmal pro Minute über einen Cronjob auf." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Teilen" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Aktiviere Sharing-API" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Erlaube Apps die Nutzung der Share-API" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Erlaube Links" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Erlaube Benutzern, Inhalte über öffentliche Links zu teilen" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Erlaube erneutes Teilen" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Erlaube Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Erlaube Benutzern, mit jedem zu teilen" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Erlaube Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Sicherheit" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Erzwinge HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Erzwingt die Verwendung einer verschlüsselten Verbindung" +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Bitte verbinden Sie sich über eine HTTPS Verbindung mit diesem ownCloud Server um diese Einstellung zu ändern" +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Log" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Loglevel" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Mehr" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Weniger" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Version" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -356,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Füge Deine Anwendung hinzu" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Weitere Anwendungen" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Wähle eine Anwendung aus" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Weitere Anwendungen findest Du auf apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-lizenziert von " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Aktualisierung durchführen" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Dokumentation für Benutzer" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Dokumentation für Administratoren" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Online-Dokumentation" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Kommerzieller Support" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Du verwendest %s der verfügbaren %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Lade die Apps zur Synchronisierung Deiner Daten herunter" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Erstinstallation erneut durchführen" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Passwort" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Dein Passwort wurde geändert." +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Passwort konnte nicht geändert werden" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Aktuelles Passwort" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Neues Passwort" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Passwort ändern" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Anzeigename" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-Mail" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Deine E-Mail-Adresse" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Sprache" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Hilf bei der Übersetzung" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Loginname" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Anlegen" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Standard-Speicher" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Unbegrenzt" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Andere" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Speicher" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "Anzeigenamen ändern" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "Neues Passwort setzen" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Standard" +msgstr "" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index c76b328283..d110847237 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -3,22 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Marcel Kühlhorn , 2013. -# Maurice Preuß <>, 2012. -# , 2012. -# Phi Lieb <>, 2012. -# Susi <>, 2012. -# , 2012. -# Tristan , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -29,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Löschen der Serverkonfiguration fehlgeschlagen" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Die Konfiguration war erfolgreich, die Verbindung konnte hergestellt werden!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Die Konfiguration ist ungültig, bitte sehen Sie für weitere Details im ownCloud Log nach" +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Löschen fehlgeschlagen" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Einstellungen von letzter Konfiguration übernehmen?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Einstellungen beibehalten?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Serverkonfiguration konnte nicht hinzugefügt werden." +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Verbindungstest erfolgreich" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Verbindungstest fehlgeschlagen" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Wollen Sie die aktuelle Serverkonfiguration wirklich löschen?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Löschung bestätigen" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitte Deinen Systemadministrator das Modul zu installieren." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Serverkonfiguration" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Serverkonfiguration hinzufügen" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Host" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Basis-DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Ein Base DN pro Zeile" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Benutzer-DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Passwort" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Lasse die Felder von DN und Passwort für anonymen Zugang leer." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Benutzer-Login-Filter" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "verwende %%uid Platzhalter, z. B. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Benutzer-Filter-Liste" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definiert den Filter für die Anfrage der Benutzer." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "ohne Platzhalter, z.B.: \"objectClass=person\"" +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Gruppen-Filter" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definiert den Filter für die Anfrage der Gruppen." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Verbindungseinstellungen" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Konfiguration aktiv" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Konfiguration wird übersprungen wenn deaktiviert" +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Backup Host (Kopie)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Gib einen optionalen Backup Host an. Es muss sich um eine Kopie des Haupt LDAP/AD Servers handeln." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Backup Port" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Hauptserver deaktivieren" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Wenn aktiviert, wird ownCloud ausschließlich den Backupserver verwenden." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Nutze TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Benutze es nicht zusammen mit LDAPS Verbindungen, es wird fehlschlagen." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Schalte die SSL-Zertifikatsprüfung aus." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Nicht empfohlen, nur zu Testzwecken." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Speichere Time-To-Live zwischen" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "in Sekunden. Eine Änderung leert den Cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Ordnereinstellungen" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Feld für den Anzeigenamen des Benutzers" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. " +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Basis-Benutzerbaum" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Ein Benutzer Base DN pro Zeile" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Benutzersucheigenschaften" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Optional; eine Eigenschaft pro Zeile" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Feld für den Anzeigenamen der Gruppe" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. " +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Basis-Gruppenbaum" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Ein Gruppen Base DN pro Zeile" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Gruppensucheigenschaften" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Assoziation zwischen Gruppe und Benutzer" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Spezielle Eigenschaften" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Kontingent Feld" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Standard Kontingent" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "in Bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "E-Mail Feld" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Testkonfiguration" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Hilfe" +msgstr "" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index ac26cb73ef..6355e0e7ac 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -3,35 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# goeck , 2011-2012 -# infinity8 , 2011 -# a.tangemann , 2012 -# Mirodin , 2012 -# deh3nne , 2012 -# george , 2011 -# I Robot , 2013 -# I Robot , 2012 -# Jan-Christoph Borchardt , 2011 -# Lukas Reschke , 2013 -# fmms , 2012 -# Marcel Kühlhorn , 2012-2013 -# mike.f , 2012 -# JamFX , 2012 -# Phi Lieb <>, 2012 -# stefanniedermann , 2013 -# Valermos , 2013 -# Susi <>, 2013 -# I Robot , 2012 -# traductor , 2013 -# traductor , 2012 -# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: Lukas Reschke \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Der Nutzer %s hat eine Datei mit Ihnen geteilt" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "%s hat einen Ordner mit Ihnen geteilt" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "%s hat die Datei \"%s\" mit Ihnen geteilt. Sie ist hier zum Download verfügbar: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "%s hat den Ordner \"%s\" mit Ihnen geteilt. Er ist hier zum Download verfügbar: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Kategorie nicht angegeben." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Keine Kategorie hinzuzufügen?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Die nachfolgende Kategorie existiert bereits: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Objekttyp nicht angegeben." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID nicht angegeben." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Fehler beim Hinzufügen von %s zu den Favoriten." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Es wurden keine Kategorien zum Löschen ausgewählt." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Fehler beim Entfernen von %s von den Favoriten." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Sonntag" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Montag" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Dienstag" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Mittwoch" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Donnerstag" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Freitag" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Samstag" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februar" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "März" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "April" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mai" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Juni" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Juli" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "August" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Dezember" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Einstellungen" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "Gerade eben" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "Vor 1 Minute" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "Vor {minutes} Minuten" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "Vor einer Stunde" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "Vor {hours} Stunden" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "Heute" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "Gestern" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "Vor {days} Tag(en)" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "Letzten Monat" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "Vor {months} Monaten" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "Vor Monaten" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "Letztes Jahr" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "Vor Jahren" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "OK" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Abbrechen" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Auswählen" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ja" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nein" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Der Objekttyp ist nicht angegeben." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -265,363 +243,363 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Der App-Name ist nicht angegeben." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Die benötigte Datei {file} ist nicht installiert!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Geteilt" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Teilen" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Fehler beim Teilen" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Fehler bei der Aufhebung der Teilung" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Fehler bei der Änderung der Rechte" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Von {owner} mit Ihnen geteilt." +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Teilen mit" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Über einen Link teilen" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Passwortschutz" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Passwort" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Link per E-Mail verschicken" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Senden" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Ein Ablaufdatum setzen" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Ablaufdatum" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Mittels einer E-Mail teilen:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Niemand gefunden" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Das Weiterverteilen ist nicht erlaubt" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Freigegeben in {item} von {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Freigabe aufheben" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "kann bearbeiten" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "Zugriffskontrolle" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "erstellen" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "aktualisieren" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "löschen" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "teilen" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Passwortgeschützt" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Fehler beim Entfernen des Ablaufdatums" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Fehler beim Setzen des Ablaufdatums" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Sende ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Email gesendet" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud-Passwort zurücksetzen" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Eine E-Mail zum Zurücksetzen des Passworts wurde gesendet." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Die Anfrage schlug fehl!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Benutzername" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Zurücksetzung beantragen" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Ihr Passwort wurde zurückgesetzt." +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Zur Login-Seite" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Neues Passwort" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Passwort zurücksetzen" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Persönlich" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Benutzer" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Anwendungen" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Hilfe" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Zugriff verboten" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud wurde nicht gefunden" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Kategorien bearbeiten" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Hinzufügen" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Sicherheitshinweis" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Bitte bringen Sie Ihre PHP Version auf den neuesten Stand um ownCloud sicher nutzen zu können." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Ihr Konto zu übernehmen." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Bitte lesen Sie die Dokumentation für Informationen, wie Sie Ihren Server konfigurieren." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Administrator-Konto anlegen" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Fortgeschritten" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Datenverzeichnis" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Datenbank einrichten" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "wird verwendet" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Datenbank-Benutzer" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Datenbank-Passwort" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Datenbank-Name" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Datenbank-Tablespace" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Datenbank-Host" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Installation abschließen" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Web-Services unter Ihrer Kontrolle" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Abmelden" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatische Anmeldung verweigert." +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Passwort vergessen?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "merken" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Einloggen" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternative Logins" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "Zurück" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "Weiter" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." +msgstr "" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 14145bf461..bbe87d75e2 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -3,39 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# goeck , 2012 -# a.tangemann , 2013 -# a.tangemann , 2012-2013 -# Mirodin , 2012 -# I Robot , 2012-2013 -# I Robot , 2012 -# Jan-Christoph Borchardt , 2012 -# Jan-Christoph Borchardt , 2011 -# Jan-Christoph Borchardt , 2011 -# Lukas Reschke , 2012 -# fmms , 2012 -# Marcel Kühlhorn , 2012-2013 -# thiel , 2013 -# Michael Krell, 2012 -# piccobello , 2012 -# JamFX , 2012 -# Phi Lieb <>, 2012 -# quick_wango , 2013 -# robN , 2013 -# stefanniedermann , 2013 -# Valermos , 2013 -# Susi <>, 2013 -# I Robot , 2012 -# Thomas Müller <>, 2012 -# traductor , 2013 -# traductor , 2012 -# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -47,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Konnte %s nicht verschieben" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Konnte Datei nicht umbenennen" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Keine Datei hochgeladen. Unbekannter Fehler" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in der php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Die Datei wurde nur teilweise hochgeladen." +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Es wurde keine Datei hochgeladen." +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Der temporäre Ordner fehlt." +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Fehler beim Schreiben auf die Festplatte" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Nicht genug Speicher vorhanden." +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Ungültiges Verzeichnis." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Dateien" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Teilen" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Entgültig löschen" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Löschen" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Umbenennen" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Ausstehend" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} existiert bereits" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "ersetzen" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "Einen Namen vorschlagen" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "abbrechen" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{old_name} wurde ersetzt durch {new_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "rückgängig machen" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "führe das Löschen aus" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 Datei wird hochgeladen" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "Dateien werden hoch geladen" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' ist kein gültiger Dateiname." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Der Dateiname darf nicht leer sein." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Ungültiger Name! Die Zeichen '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ihr Speicher ist voll. Daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien einen Moment dauern." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Nicht genügend Speicherplatz verfügbar" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Upload abgebrochen." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Die URL darf nicht leer sein." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Name" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Größe" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Bearbeitet" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 Ordner" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} Ordner" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 Datei" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} Dateien" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Hochladen" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Dateibehandlung" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximale Upload-Größe" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maximal möglich:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP-Download aktivieren" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 bedeutet unbegrenzt" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maximale Größe für ZIP-Dateien" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Speichern" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Neu" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Textdatei" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Ordner" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Von einem Link" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Gelöschte Dateien" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Upload abbrechen" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Sie haben hier keine Schreib-Berechtigungen." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Alles leer. Bitte laden Sie etwas hoch!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Herunterladen" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Freigabe aufheben" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Der Upload ist zu groß" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Dateien werden gescannt, bitte warten." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Scanne" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Aktualisiere den Dateisystem-Cache..." +msgstr "" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index cb549f90fd..817c20ad22 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Andreas Tangemann , 2013. -# , 2012. -# Marc-Andre Husyk , 2013. -# Marcel Kühlhorn , 2013. -# Susi <>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -25,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Verschlüsselung" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Datei-Verschlüsselung ist aktiviert" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Die folgenden Dateitypen werden nicht verschlüsselt:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Die folgenden Dateitypen von der Verschlüsselung ausnehmen:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Keine" +msgstr "" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 54573a0816..e9efca4076 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -3,20 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# a.tangemann , 2013 -# Mirodin , 2012 -# deh3nne , 2012 -# I Robot , 2012 -# stefanniedermann , 2013 -# I Robot , 2012 -# traductor , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" -"PO-Revision-Date: 2013-04-24 17:40+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Zugriff gestattet" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Fehler beim Einrichten von Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Zugriff gestatten" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Fehler beim Einrichten von Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Achtung: Die Curl Unterstützung von PHP ist nicht aktiviert oder installiert. Das Laden von ownCloud / WebDAV oder GoogleDrive Freigaben ist nicht möglich. Bitte Sie Ihren Systemadministrator, das Modul zu installieren." +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Externer Speicher" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Ordnername" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Externer Speicher" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Optionen" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Zutreffend" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Speicher hinzufügen" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Nicht definiert" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Alle Benutzer" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Gruppen" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Benutzer" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Löschen" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Externen Speicher für Benutzer aktivieren" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL-Root-Zertifikate" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Root-Zertifikate importieren" +msgstr "" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 0f52dc9f53..5dbdd280b9 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# I Robot , 2012. -# , 2012. -# , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -24,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Passwort" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Absenden" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s hat den Ordner %s mit Ihnen geteilt" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s hat die Datei %s mit Ihnen geteilt" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Download" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Es ist keine Vorschau verfügbar für" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "Web-Services unter Ihrer Kontrolle" +msgstr "" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 00c1b90925..f48f8cb017 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Andreas Tangemann , 2013. -# I Robot , 2013. -# Marcel Kühlhorn , 2013. -# Phillip Schichtel , 2013. -# , 2013. -# Susi <>, 2013. -# Tristan , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -27,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Konnte %s nicht dauerhaft löschen" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Konnte %s nicht wiederherstellen" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "Wiederherstellung ausführen" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "Datei dauerhaft löschen" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Endgültig löschen" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Name" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Gelöscht" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 Ordner" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} Ordner" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 Datei" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} Dateien" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Wiederherstellen" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Löschen" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Gelöschte Dateien" +msgstr "" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index 341c1a1b00..232fe59653 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -3,22 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# I Robot , 2012. -# , 2012. -# Marcel Kühlhorn , 2013. -# , 2013. -# , 2012. -# , 2013. -# , 2013. -# , 2012. -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -30,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Konnte %s nicht zurücksetzen" +msgstr "" #: history.php:40 msgid "success" -msgstr "Erfolgreich" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Die Datei %s wurde auf die Version %s zurückgesetzt" +msgstr "" #: history.php:49 msgid "failure" -msgstr "Fehlgeschlagen" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Die Datei %s konnte nicht auf die Version %s zurückgesetzt werden" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Keine älteren Versionen verfügbar" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Kein Pfad angegeben" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versionen" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Setze eine Datei durch Klicken auf den Zurücksetzen-Button auf eine frühere Version zurück" +msgstr "" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index e21abf4d38..e9323812cd 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -3,23 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# a.tangemann , 2013 -# a.tangemann , 2012 -# Mirodin , 2012 -# I Robot , 2013 -# Jan-Christoph Borchardt , 2012 -# Marcel Kühlhorn , 2012-2013 -# Phi Lieb <>, 2012 -# stefanniedermann , 2013 -# I Robot , 2012 -# traductor , 2012 -# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -30,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Hilfe" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Persönlich" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Einstellungen" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Benutzer" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Apps" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administrator" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Der ZIP-Download ist deaktiviert." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Die Dateien müssen einzeln heruntergeladen werden." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Zurück zu \"Dateien\"" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "konnte nicht ermittelt werden" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Die Anwendung ist nicht aktiviert" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Authentifizierungs-Fehler" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Dateien" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Text" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Bilder" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Setze Administrator Benutzername." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Setze Administrator Passwort" +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s geben Sie den Datenbank-Benutzernamen an." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s geben Sie den Datenbank-Namen an." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s setze den Datenbank-Host" +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle Benutzername und/oder Passwort ungültig" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL Benutzername und/oder Passwort ungültig" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "DB Fehler: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Fehlerhafter Befehl war: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Lösche diesen Benutzer aus MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Lösche diesen Benutzer aus MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Ihr Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Installationsanleitungen." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "Gerade eben" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "Vor einer Minute" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "Vor einer Stunde" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "Vor %d Stunden" +msgstr "" #: template.php:118 msgid "today" -msgstr "Heute" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "Gestern" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "Vor %d Tag(en)" +msgstr "" #: template.php:121 msgid "last month" -msgstr "Letzten Monat" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "Vor %d Monaten" +msgstr "" #: template.php:123 msgid "last year" -msgstr "Letztes Jahr" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "Vor Jahren" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s ist verfügbar. Weitere Informationen" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "aktuell" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "Die Update-Überprüfung ist ausgeschaltet" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." +msgstr "" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 98bfee366b..1375d1a2ff 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -3,37 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# goeck , 2011-2012 -# a.tangemann , 2013 -# Mirodin , 2012 -# Robin Appelman , 2012 -# I Robot , 2012-2013 -# I Robot , 2012 -# Jan-Christoph Borchardt , 2011 -# Jan T , 2012 -# Lukas Reschke , 2013 -# Lukas Reschke , 2012 -# fmms , 2012 -# Marcel Kühlhorn , 2012-2013 -# piccobello , 2012 -# JamFX , 2012 -# Phi Lieb <>, 2012 -# quick_wango , 2013 -# robN , 2013 -# seeed , 2012 -# stefanniedermann , 2013 -# Susi <>, 2013 -# I Robot , 2012 -# traductor , 2013 -# traductor , 2012 -# traductor , 2012 -# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -44,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Fehler bei der Anmeldung" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -57,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Das Ändern des Anzeigenamens ist nicht möglich" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Die Gruppe existiert bereits" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Die Gruppe konnte nicht angelegt werden" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Die Anwendung konnte nicht aktiviert werden." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-Mail-Adresse gespeichert" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Ungültige E-Mail-Adresse" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Die Gruppe konnte nicht gelöscht werden" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Der Benutzer konnte nicht gelöscht werden" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Sprache geändert" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Ungültige Anfrage" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administratoren können sich nicht selbst aus der admin-Gruppe löschen" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Die App konnte nicht aktualisiert werden." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Update zu {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Deaktivieren" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Aktivieren" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Bitte warten...." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Update..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Es ist ein Fehler während des Updates aufgetreten" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Aktualisiert" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Speichern..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "gelöscht" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "rückgängig machen" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Der Benutzer konnte nicht entfernt werden." +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Gruppen" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Gruppenadministrator" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Löschen" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "Gruppe hinzufügen" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Es muss ein gültiger Benutzername angegeben werden" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Es muss ein gültiges Passwort angegeben werden" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Deutsch (Förmlich: Sie)" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Sicherheitshinweis" +msgstr "" #: templates/admin.php:18 msgid "" @@ -205,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ können Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Einrichtungswarnung" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Installationsanleitungen." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Das Modul 'fileinfo' fehlt" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Die Lokalisierung funktioniert nicht" +msgstr "" #: templates/admin.php:63 #, php-format @@ -242,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Dieser ownCloud-Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Keine Netzwerkverbindung" +msgstr "" #: templates/admin.php:78 msgid "" @@ -256,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Dieser ownCloud-Server hat keine funktionierende Internetverbindung. Dies bedeutet, dass einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungs-E-Mails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen von ownCloud nutzen wollen." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php ist bei einem Webcron-Service registriert. Die cron.php Seite im ownCloud-Wurzelverzeichniss wird einmal pro Minute über http abgerufen." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Nutzen Sie den Cron-Systemdienst. Rufen Sie die Datei cron.php im ownCloud-Ordner einmal pro Minute über einen Cronjob auf." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Teilen" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Share-API aktivieren" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Anwendungen erlauben, die Share-API zu benutzen" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Links erlauben" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Erlaube weiterverteilen" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Erlaube Benutzern, mit jedem zu teilen" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Erlaube Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Sicherheit" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "HTTPS erzwingen" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung mit ownCloud zu verbinden." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Bitte verbinden Sie sich mit dieser ownCloud-Instanz per HTTPS, um SSL-Erzwingung zu aktivieren oder deaktivieren." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Log" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Log-Level" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Mehr" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Weniger" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Version" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -361,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Fügen Sie Ihre Anwendung hinzu" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Weitere Anwendungen" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Wählen Sie eine Anwendung aus" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-lizenziert von " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Update durchführen" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Dokumentation für Benutzer" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Dokumentation für Administratoren" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Online-Dokumentation" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Kommerzieller Support" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Sie verwenden %s der verfügbaren %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Den Einrichtungsassistenten erneut anzeigen" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Passwort" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Ihr Passwort wurde geändert." +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Das Passwort konnte nicht geändert werden" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Aktuelles Passwort" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Neues Passwort" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Passwort ändern" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Anzeigename" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-Mail" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Ihre E-Mail-Adresse" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Sprache" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Helfen Sie bei der Übersetzung" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Loginname" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Anlegen" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Standard-Speicher" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Unbegrenzt" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Andere" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Speicher" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "Anzeigenamen ändern" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "Neues Passwort setzen" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Standard" +msgstr "" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index d35dff4931..5d2a670b3f 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -3,26 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Andreas Tangemann , 2013. -# , 2012. -# I Robot , 2012. -# Marcel Kühlhorn , 2013. -# Maurice Preuß <>, 2012. -# , 2012. -# Phi Lieb <>, 2012. -# , 2013. -# , 2013. -# Susi <>, 2013. -# , 2013. -# , 2012. -# , 2012. -# Tristan , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -33,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Das Löschen der Server-Konfiguration schlug fehl" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Die Konfiguration ist gültig, aber das Herstellen der Verbindung schlug fehl. Bitte überprüfen Sie die Server-Einstellungen und Zertifikate." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Die Konfiguration ist ungültig. Weitere Details können Sie im ownCloud-Log nachlesen." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Löschen fehlgeschlagen" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Sollen die Einstellungen der letzten Serverkonfiguration übernommen werden?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Einstellungen behalten?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Das Hinzufügen der Serverkonfiguration schlug fehl" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Verbindungstest erfolgreich" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Verbindungstest fehlgeschlagen" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Möchten Sie die Serverkonfiguration wirklich löschen?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Löschung bestätigen" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Serverkonfiguration" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Serverkonfiguration hinzufügen" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Host" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Basis-DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Ein Base DN pro Zeile" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Benutzer-DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Passwort" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Lassen Sie die Felder von DN und Passwort für einen anonymen Zugang leer." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Benutzer-Login-Filter" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung durchgeführt wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "verwenden Sie %%uid Platzhalter, z. B. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Benutzer-Filter-Liste" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definiert den Filter für die Anfrage der Benutzer." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "ohne Platzhalter, z.B.: \"objectClass=person\"" +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Gruppen-Filter" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definiert den Filter für die Anfrage der Gruppen." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Verbindungseinstellungen" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Konfiguration aktiv" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Wenn nicht angehakt, wird diese Konfiguration übersprungen." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Back-Up (Replikation) Host" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Geben Sie einen optionalen Backup-Host an. Es muss ein Replikat des Haupt-LDAP/AD Servers sein." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Back-Up (Replikation) Port" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Hauptserver deaktivieren" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Wenn eingeschaltet, wird sich die ownCloud nur mit dem Replikat-Server verbinden." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Benutze TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Benutzen Sie es nicht in Verbindung mit LDAPS Verbindungen, es wird fehlschlagen." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Schalten Sie die SSL-Zertifikatsprüfung aus." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Nicht empfohlen, nur zu Testzwecken." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Speichere Time-To-Live zwischen" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "in Sekunden. Eine Änderung leert den Cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Verzeichniseinstellungen" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Feld für den Anzeigenamen des Benutzers" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. " +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Basis-Benutzerbaum" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Ein Benutzer Base DN pro Zeile" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Eigenschaften der Benutzer-Suche" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Optional; ein Attribut pro Zeile" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Feld für den Anzeigenamen der Gruppe" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. " +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Basis-Gruppenbaum" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Ein Gruppen Base DN pro Zeile" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Eigenschaften der Gruppen-Suche" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Assoziation zwischen Gruppe und Benutzer" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Besondere Eigenschaften" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Kontingent-Feld" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Standard-Kontingent" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "in Bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "E-Mail-Feld" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Testkonfiguration" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Hilfe" +msgstr "" diff --git a/l10n/el/core.po b/l10n/el/core.po index 390ca2503d..d1f2277618 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -3,22 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# axil Pι , 2012 -# Dimitris M. , 2012-2013 -# Efstathios Iosifidis , 2012 -# Efstathios Iosifidis , 2013 -# Efstathios Iosifidis , 2012 -# Marios Bekatoros <>, 2012 -# Petros Kyladitis , 2011 -# Petros Kyladitis , 2011-2012 -# xneo1 , 2013 -# Wasilis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -30,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Ο χρήστης %s διαμοιράστηκε ένα αρχείο με εσάς" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Ο χρήστης %s διαμοιράστηκε ένα φάκελο με εσάς" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Ο χρήστης %s διαμοιράστηκε το αρχείο \"%s\" μαζί σας. Είναι διαθέσιμο για λήψη εδώ: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Ο χρήστης %s διαμοιράστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθέσιμος για λήψη εδώ: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Δεν δώθηκε τύπος κατηγορίας." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Δεν έχετε κατηγορία να προσθέσετε;" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Αυτή η κατηγορία υπάρχει ήδη: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Δεν δώθηκε τύπος αντικειμένου." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "Δεν δώθηκε η ID για %s." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Σφάλμα προσθήκης %s στα αγαπημένα." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Δεν επιλέχτηκαν κατηγορίες για διαγραφή." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Σφάλμα αφαίρεσης %s από τα αγαπημένα." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Κυριακή" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Δευτέρα" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Τρίτη" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Τετάρτη" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Πέμπτη" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Παρασκευή" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Σάββατο" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Ιανουάριος" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Φεβρουάριος" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Μάρτιος" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Απρίλιος" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Μάϊος" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Ιούνιος" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Ιούλιος" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Αύγουστος" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Σεπτέμβριος" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Οκτώβριος" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Νοέμβριος" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Δεκέμβριος" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Ρυθμίσεις" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "δευτερόλεπτα πριν" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 λεπτό πριν" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} λεπτά πριν" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 ώρα πριν" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} ώρες πριν" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "σήμερα" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "χτες" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} ημέρες πριν" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "τελευταίο μήνα" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} μήνες πριν" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "μήνες πριν" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "τελευταίο χρόνο" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "χρόνια πριν" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Οκ" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Άκυρο" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Επιλέξτε" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ναι" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Όχι" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Δεν καθορίστηκε ο τύπος του αντικειμένου." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -253,363 +243,363 @@ msgstr "Δεν καθορίστηκε ο τύπος του αντικειμέν #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Σφάλμα" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Δεν καθορίστηκε το όνομα της εφαρμογής." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Το απαιτούμενο αρχείο {file} δεν εγκαταστάθηκε!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Κοινόχρηστα" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Διαμοιρασμός" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Σφάλμα κατά τον διαμοιρασμό" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Σφάλμα κατά το σταμάτημα του διαμοιρασμού" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Σφάλμα κατά την αλλαγή των δικαιωμάτων" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Διαμοιράστηκε με σας και με την ομάδα {group} του {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Διαμοιράστηκε με σας από τον {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Διαμοιρασμός με" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Διαμοιρασμός με σύνδεσμο" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Προστασία συνθηματικού" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Συνθηματικό" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Αποστολή συνδέσμου με email " +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Αποστολή" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Ορισμός ημ. λήξης" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Ημερομηνία λήξης" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Διαμοιρασμός μέσω email:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Δεν βρέθηκε άνθρωπος" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Ξαναμοιρασμός δεν επιτρέπεται" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Διαμοιρασμός του {item} με τον {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Σταμάτημα διαμοιρασμού" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "δυνατότητα αλλαγής" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "έλεγχος πρόσβασης" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "δημιουργία" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "ενημέρωση" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "διαγραφή" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "διαμοιρασμός" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Προστασία με συνθηματικό" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Αποστολή..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Το Email απεστάλη " +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην κοινότητα ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Επαναφορά συνθηματικού ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Η επαναφορά του email στάλθηκε." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Η αίτηση απέτυχε!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Όνομα Χρήστη" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Επαναφορά αίτησης" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Ο κωδικός πρόσβασής σας επαναφέρθηκε" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Σελίδα εισόδου" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Νέο συνθηματικό" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Επαναφορά συνθηματικού" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Προσωπικά" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Χρήστες" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Εφαρμογές" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Διαχειριστής" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Βοήθεια" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Δεν επιτρέπεται η πρόσβαση" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Δεν βρέθηκε νέφος" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Επεξεργασία κατηγοριών" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Προσθήκη" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Προειδοποίηση Ασφαλείας" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Παρακαλώ ενημερώστε την εγκατάσταση PHP σας ώστε να χρησιμοποιήσετε ασφαλέστερα το ownCloud." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Δεν είναι διαθέσιμο το πρόσθετο δημιουργίας τυχαίων αριθμών ασφαλείας, παρακαλώ ενεργοποιήστε το πρόσθετο της PHP, OpenSSL." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Χωρίς το πρόσθετο δημιουργίας τυχαίων αριθμών ασφαλείας, μπορεί να διαρρεύσει ο λογαριασμός σας από επιθέσεις στο διαδίκτυο." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανό προσβάσιμα από το internet γιατί δεν δουλεύει το αρχείο .htaccess." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Για πληροφορίες σχετικά με την σωστή ρύθμιση του διακομιστή σας, δείτε στην τεκμηρίωση." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Δημιουργήστε έναν λογαριασμό διαχειριστή" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Για προχωρημένους" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Φάκελος δεδομένων" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Ρύθμιση της βάσης δεδομένων" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "θα χρησιμοποιηθούν" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Χρήστης της βάσης δεδομένων" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Συνθηματικό βάσης δεδομένων" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Όνομα βάσης δεδομένων" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Κενά Πινάκων Βάσης Δεδομένων" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Διακομιστής βάσης δεδομένων" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Ολοκλήρωση εγκατάστασης" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Υπηρεσίες web υπό τον έλεγχό σας" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Αποσύνδεση" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Απορρίφθηκε η αυτόματη σύνδεση!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Εάν δεν αλλάξατε το συνθηματικό σας προσφάτως, ο λογαριασμός μπορεί να έχει διαρρεύσει!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Παρακαλώ αλλάξτε το συνθηματικό σας για να ασφαλίσετε πάλι τον λογαριασμό σας." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Ξεχάσατε το συνθηματικό σας;" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "απομνημόνευση" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Είσοδος" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Εναλλακτικές Συνδέσεις" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "προηγούμενο" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "επόμενο" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο." +msgstr "" diff --git a/l10n/el/files.po b/l10n/el/files.po index 27c61ff896..5934dcd212 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -3,22 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# axil Pι , 2013 -# Dimitris M. , 2012-2013 -# Efstathios Iosifidis , 2012-2013 -# Efstathios Iosifidis , 2013 -# Efstathios Iosifidis , 2012 -# Konstantinos Tzanidis , 2012 -# Marios Bekatoros <>, 2012 -# Petros Kyladitis , 2011-2013 -# Wasilis , 2013 -# Γιάννης Ανθυμίδης , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -30,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Αδυναμία μετακίνησης του %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Αδυναμία μετονομασίας αρχείου" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Το αρχείο εστάλει μόνο εν μέρει" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Κανένα αρχείο δεν στάλθηκε" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Λείπει ο προσωρινός φάκελος" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Αποτυχία εγγραφής στο δίσκο" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Μη έγκυρος φάκελος." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Αρχεία" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Διαμοιρασμός" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Μόνιμη διαγραφή" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Διαγραφή" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Μετονομασία" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Εκκρεμεί" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} υπάρχει ήδη" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "αντικατέστησε" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "συνιστώμενο όνομα" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "ακύρωση" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "αντικαταστάθηκε το {new_name} με {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "αναίρεση" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "εκτέλεση της διαδικασίας διαγραφής" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 αρχείο ανεβαίνει" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "αρχεία ανεβαίνουν" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' είναι μη έγκυρο όνομα αρχείου." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Το όνομα αρχείου δεν μπορεί να είναι κενό." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Η αποστολή ακυρώθηκε." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Η URL δεν μπορεί να είναι κενή." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Σφάλμα" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Όνομα" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Μέγεθος" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Τροποποιήθηκε" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 φάκελος" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} φάκελοι" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 αρχείο" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} αρχεία" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Αποστολή" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Διαχείριση αρχείων" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Μέγιστο μέγεθος αποστολής" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "μέγιστο δυνατό:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Απαραίτητο για κατέβασμα πολλαπλών αρχείων και φακέλων" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Ενεργοποίηση κατεβάσματος ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 για απεριόριστο" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Μέγιστο μέγεθος για αρχεία ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Αποθήκευση" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Νέο" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Αρχείο κειμένου" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Φάκελος" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Από σύνδεσμο" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Διαγραμμένα αρχεία" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Ακύρωση αποστολής" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Δεν έχετε δικαιώματα εγγραφής εδώ." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Λήψη" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Διακοπή κοινής χρήσης" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Πολύ μεγάλο αρχείο προς αποστολή" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Τρέχουσα ανίχνευση" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." +msgstr "" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 657368cb3f..e5420b1985 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dimitris M. , 2013. -# Efstathios Iosifidis , 2012. -# Efstathios Iosifidis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -22,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Κρυπτογράφηση" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Η κρυπτογράφηση αρχείων είναι ενεργή." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Οι παρακάτω τύποι αρχείων δεν θα κρυπτογραφηθούν:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Εξαίρεση των παρακάτω τύπων αρχείων από την κρυπτογράφηση:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Καμία" +msgstr "" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 0bfbe19df7..da670cb31f 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Efstathios Iosifidis , 2012 -# Efstathios Iosifidis , 2012 -# Nisok Kosin , 2012 -# Petros Kyladitis , 2012 -# Wasilis , 2013 -# Γιάννης Ανθυμίδης , 2012 -# Γιάννης Ανθυμίδης , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -26,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Προσβαση παρασχέθηκε" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Dropbox " +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Παροχή πρόσβασης" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox και μυστικό." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." +msgstr "" #: lib/config.php:437 msgid "" @@ -66,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Εξωτερικό Αποθηκευτικό Μέσο" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Όνομα φακέλου" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Εξωτερική αποθήκευση" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Ρυθμίσεις" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Επιλογές" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Εφαρμόσιμο" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Προσθηκη αποθηκευσης" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Κανένα επιλεγμένο" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Όλοι οι Χρήστες" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Ομάδες" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Χρήστες" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Διαγραφή" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Πιστοποιητικά SSL root" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Εισαγωγή Πιστοποιητικού Root" +msgstr "" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 5f558cf118..3b977cd07a 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dimitris M. , 2012. -# Efstathios Iosifidis , 2012. -# Nisok Kosin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -22,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Συνθηματικό" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Καταχώρηση" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Λήψη" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" +msgstr "" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index b3db2cb372..01a3bd29c4 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dimitris M. , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Αδύνατη η μόνιμη διαγραφή του %s" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Αδυναμία επαναφοράς %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "εκτέλεση λειτουργία επαναφοράς" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Σφάλμα" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "μόνιμη διαγραφή αρχείου" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Μόνιμη διαγραφή" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Όνομα" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Διαγράφηκε" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 φάκελος" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} φάκελοι" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 αρχείο" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} αρχεία" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Επαναφορά" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Διαγραφή" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Διαγραμμένα Αρχεία" +msgstr "" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index d87bcb7f29..6ddffc7206 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dimitris M. , 2012-2013. -# Efstathios Iosifidis , 2012. -# Nisok Kosin , 2012. -# Wasilis Mandratzis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -24,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Αδυναμία επαναφοράς του: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "επιτυχία" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Το αρχείο %s επαναφέρθηκε στην έκδοση %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "αποτυχία" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Το αρχείο %s δεν είναι δυνατό να επαναφερθεί στην έκδοση %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Μη διαθέσιμες παλιές εκδόσεις" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Δεν καθορίστηκε διαδρομή" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Εκδόσεις" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Επαναφορά ενός αρχείου σε προηγούμενη έκδοση πατώντας στο κουμπί επαναφοράς" +msgstr "" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 73635112f6..8da4e7717a 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dimitris M. , 2013 -# Efstathios Iosifidis , 2013 -# Efstathios Iosifidis , 2012 -# xneo1 , 2013 -# Wasilis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -24,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Βοήθεια" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Προσωπικά" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Ρυθμίσεις" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Χρήστες" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Εφαρμογές" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Διαχειριστής" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Η λήψη ZIP απενεργοποιήθηκε." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Πίσω στα Αρχεία" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "δεν μπορούσε να προσδιορισθεί" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Δεν ενεργοποιήθηκε η εφαρμογή" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Σφάλμα πιστοποίησης" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Αρχεία" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Κείμενο" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Εικόνες" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Εισάγετε όνομα χρήστη διαχειριστή." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Εισάγετε συνθηματικό διαχειριστή." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s εισάγετε το όνομα της βάσης δεδομένων." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s ρυθμίση του κεντρικόυ υπολογιστή βάσης δεδομένων. " +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Υπάρχει ήδη ο χρήστης '%s'@'localhost' της MySQL." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Απόρριψη αυτού του χρήστη από την MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Ο χρήστης '%s'@'%%' της MySQL υπάρχει ήδη" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Απόρριψη αυτού του χρήστη από την MySQL" +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Το όνομα χρήστη και/ή ο κωδικός της MS SQL δεν είναι έγκυρα: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "δευτερόλεπτα πριν" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 λεπτό πριν" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d λεπτά πριν" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 ώρα πριν" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d ώρες πριν" +msgstr "" #: template.php:118 msgid "today" -msgstr "σήμερα" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "χθές" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d ημέρες πριν" +msgstr "" #: template.php:121 msgid "last month" -msgstr "τον προηγούμενο μήνα" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d μήνες πριν" +msgstr "" #: template.php:123 msgid "last year" -msgstr "τον προηγούμενο χρόνο" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "χρόνια πριν" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s είναι διαθέσιμο. Δείτε περισσότερες πληροφορίες" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "ενημερωμένο" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "ο έλεγχος ενημερώσεων είναι απενεργοποιημένος" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Αδυναμία εύρεσης κατηγορίας \"%s\"" +msgstr "" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 5813eb75e6..c2aa8ff9c5 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -3,26 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dimitris M. , 2012-2013 -# Efstathios Iosifidis , 2012 -# Efstathios Iosifidis , 2013 -# Efstathios Iosifidis , 2012 -# Robin Appelman , 2012 -# Robin Appelman , 2012 -# Marios Bekatoros <>, 2012 -# Nisok Kosin , 2012 -# Petros Kyladitis , 2011 -# Petros Kyladitis , 2011 -# Petros Kyladitis , 2011-2012 -# xneo1 , 2013 -# Wasilis , 2013 -# Γιάννης Ανθυμίδης , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -33,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Σφάλμα στην φόρτωση της λίστας από το App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Σφάλμα πιστοποίησης" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -46,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Δεν είναι δυνατή η αλλαγή του ονόματος εμφάνισης" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Η ομάδα υπάρχει ήδη" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Αδυναμία προσθήκης ομάδας" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Αδυναμία ενεργοποίησης εφαρμογής " +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Το email αποθηκεύτηκε " +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Μη έγκυρο email" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Αδυναμία διαγραφής ομάδας" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Αδυναμία διαγραφής χρήστη" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Η γλώσσα άλλαξε" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Μη έγκυρο αίτημα" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Οι διαχειριστές δεν μπορούν να αφαιρέσουν τους εαυτούς τους από την ομάδα των διαχειριστών" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Αδυναμία προσθήκη χρήστη στην ομάδα %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Αδυναμία ενημέρωσης εφαρμογής" +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Ενημέρωση σε {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Απενεργοποίηση" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Ενεργοποίηση" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Παρακαλώ περιμένετε..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Σφάλμα" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Ενημέρωση..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Σφάλμα κατά την ενημέρωση της εφαρμογής" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Ενημερώθηκε" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Αποθήκευση..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "διαγράφηκε" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "αναίρεση" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Αδυναμία αφαίρεση χρήστη" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Ομάδες" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Ομάδα Διαχειριστών" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Διαγραφή" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "προσθήκη ομάδας" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Σφάλμα δημιουργίας χρήστη" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__όνομα_γλώσσας__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Προειδοποίηση Ασφαλείας" +msgstr "" #: templates/admin.php:18 msgid "" @@ -194,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Ο κατάλογος data και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess που παρέχει το ownCloud δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος data να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο data έξω από τον κατάλογο του διακομιστή." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Ρύθμιση Προειδοποίησης" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Η ενοτητα 'fileinfo' λειπει" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. " +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Η μετάφραση δεν δουλεύει" +msgstr "" #: templates/admin.php:63 #, php-format @@ -231,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Αυτός ο ownCloud διακομιστης δεν μπορείτε να εφαρμοσει το σύνολο τοπικής προσαρμογής συστημάτων στο %s. Αυτό σημαίνει ότι μπορεί να υπάρξουν προβλήματα με ορισμένους χαρακτήρες σε ονόματα αρχείων. Σας συνιστούμε να εγκαταστήσετε τις απαραίτητες συσκευασίες στο σύστημά σας για να υποστηρίχθει το %s. " +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Η σύνδεση στο διαδίκτυο δεν δουλεύει" +msgstr "" #: templates/admin.php:78 msgid "" @@ -245,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Αυτός ο διακομιστής ownCloud δεν έχει σύνδεση στο Διαδίκτυο. Αυτό σημαίνει ότι ορισμένα από τα χαρακτηριστικά γνωρίσματα όπως η τοποθέτηση εξωτερικής αποθήκευσης, οι κοινοποιήσεις σχετικά με ανανεωσεις, ή εγκατάσταση 3ων εφαρμογές δεν λειτουργούν. Η πρόσβαση σε αρχεία και η αποστολή μηνυμάτων ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην λειτουργεί. Σας προτείνουμε να σύνδεθειτε στο διαδικτυο αυτό τον διακομιστή, εάν θέλετε να έχετε όλα τα χαρακτηριστικά του ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http" +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Διαμοιρασμός" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Ενεργοποίηση API Διαμοιρασμού" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Να επιτρέπονται σύνδεσμοι" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Ασφάλεια" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Επιβολή χρήσης HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Επιβολή στους πελάτες να συνδεθούν στο ownCloud μέσω μιας κρυπτογραφημένης σύνδεσης." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Παρακαλώ συνδεθείτε με το ownCloud μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή SSL. " +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Καταγραφές" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Επίπεδο καταγραφής" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Περισσότερα" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Λιγότερα" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Έκδοση" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -350,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Πρόσθεστε τη Δικιά σας Εφαρμογή" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Περισσότερες Εφαρμογές" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Επιλέξτε μια Εφαρμογή" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-άδεια από " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Ενημέρωση" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Τεκμηρίωση Χρήστη" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Τεκμηρίωση Διαχειριστή" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Τεκμηρίωση στο Διαδίκτυο" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Φόρουμ" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Εμπορική Υποστήριξη" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Χρησιμοποιήσατε %s από διαθέσιμα %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Λήψη της εφαρμογής για συγχρονισμό των αρχείων σας" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Προβολή Πρώτης Εκτέλεσης Οδηγού πάλι" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Συνθηματικό" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Το συνθηματικό σας έχει αλλάξει" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Τρέχων συνθηματικό" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Νέο συνθηματικό" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Αλλαγή συνθηματικού" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Όνομα εμφάνισης" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Γλώσσα" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Βοηθήστε στη μετάφραση" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Όνομα Σύνδεσης" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Δημιουργία" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Προκαθορισμένη Αποθήκευση " +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Απεριόριστο" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Άλλα" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Αποθήκευση" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "αλλαγή ονόματος εμφάνισης" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "επιλογή νέου κωδικού" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Προκαθορισμένο" +msgstr "" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 0685878dc0..e2f1d05f9b 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dimitris M. , 2012. -# Efstathios Iosifidis , 2012. -# Efstathios Iosifidis , 2013. -# Konstantinos Tzanidis , 2012. -# Marios Bekatoros <>, 2012. -# Wasilis Mandratzis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -26,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Αποτυχία διαγραφής ρυθμίσεων διακομιστή" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Οι ρυθμίσεις είναι έγκυρες και η σύνδεση μπορεί να πραγματοποιηθεί!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Μη έγκυρες ρυθμίσεις. Παρακαλώ ελέγξτε τις καταγραφές του ownCloud για περισσότερες λεπτομέρειες." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Η διαγραφή απέτυχε" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Διατήρηση ρυθμίσεων;" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Αδυναμία προσθήκης ρυθμίσεων διακομιστή" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Επιτυχημένη δοκιμαστική σύνδεση" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Αποτυχημένη δοκιμαστική σύνδεσης." +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Επιβεβαίωση Διαγραφής" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Προσοχή: Το άρθρωμα PHP LDAP δεν είναι εγκατεστημένο και το σύστημα υποστήριξης δεν θα δουλέψει. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να το εγκαταστήσει." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Ρυθμίσεις Διακομιστή" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Προσθήκη Ρυθμίσεων Διακομιστή" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Διακομιστής" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Base DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Ένα DN Βάσης ανά γραμμή " +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "User DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Συνθηματικό" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "User Login Filter" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά την προσπάθεια σύνδεσης χρήστη. %%uid αντικαθιστά το όνομα χρήστη κατά τη σύνδεση. " +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "χρησιμοποιήστε τη μεταβλητή %%uid, π.χ. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "User List Filter" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση επαφών." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=άτομο\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Group Filter" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση ομάδων." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=ΟμάδαPosix\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Ρυθμίσεις Σύνδεσης" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Ενεργοποιηση ρυθμισεων" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Όταν δεν είναι επιλεγμένο, αυτή η ρύθμιση θα πρέπει να παραλειφθεί. " +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Θύρα" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Δημιουργία αντιγράφων ασφαλείας (Replica) Host " +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Δώστε μια προαιρετική εφεδρική υποδοχή. Πρέπει να είναι ένα αντίγραφο του κύριου LDAP / AD διακομιστη." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Δημιουργία αντιγράφων ασφαλείας (Replica) Υποδοχη" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Απενεργοποιηση του κεντρικου διακομιστη" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Όταν ενεργοποιηθεί, με το ownCloud θα συνδεθείτε με το διακομιστή ρεπλίκα." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Χρήση TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Μην το χρησιμοποιήσετε επιπροσθέτως, για LDAPS συνδέσεις , θα αποτύχει." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Εάν η σύνδεση δουλεύει μόνο με αυτή την επιλογή, εισάγετε το LDAP SSL πιστοποιητικό του διακομιστή στον ownCloud server σας." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Δεν προτείνεται, χρήση μόνο για δοκιμές." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Cache Time-To-Live" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "σε δευτερόλεπτα. Μια αλλαγή αδειάζει την μνήμη cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Ρυθμίσεις Καταλόγου" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Πεδίο Ονόματος Χρήστη" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος χρήστη του ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Base User Tree" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Ένα DN βάσης χρηστών ανά γραμμή" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Χαρακτηριστικά αναζήτησης των χρηστών " +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Προαιρετικά? Ένα χαρακτηριστικό ανά γραμμή " +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Group Display Name Field" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος ομάδας του ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Base Group Tree" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Μια ομαδικη Βάση DN ανά γραμμή" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Ομάδα Χαρακτηριστικων Αναζήτηση" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Group-Member association" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Ειδικά Χαρακτηριστικά " +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Ποσοσταση πεδιου" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Προκαθισμενο πεδιο" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "σε bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Email τυπος" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας " +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Δοκιμαστικες ρυθμισεις" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Βοήθεια" +msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 78012968ff..4a9cd83681 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2012 -# Michael Moroni , 2012 -# Mariano , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -23,34 +20,34 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "La uzanto %s kunhavigis dosieron kun vi" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "La uzanto %s kunhavigis dosierujon kun vi" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "La uzanto %s kunhavigis la dosieron “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "La uzanto %s kunhavigis la dosierujon “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Ne proviziĝis tipon de kategorio." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Ĉu neniu kategorio estas aldonota?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -61,184 +58,184 @@ msgstr "" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Ne proviziĝis tipon de objekto." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "Ne proviziĝis ID-on de %s." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Eraro dum aldono de %s al favoratoj." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Neniu kategorio elektiĝis por forigo." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Eraro dum forigo de %s el favoratoj." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "dimanĉo" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "lundo" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "mardo" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "merkredo" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "ĵaŭdo" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "vendredo" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "sabato" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januaro" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februaro" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Marto" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Aprilo" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Majo" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Junio" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Julio" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Aŭgusto" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Septembro" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktobro" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Novembro" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Decembro" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Agordo" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sekundoj antaŭe" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "antaŭ 1 minuto" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "antaŭ {minutes} minutoj" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "antaŭ 1 horo" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "antaŭ {hours} horoj" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "hodiaŭ" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "hieraŭ" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "antaŭ {days} tagoj" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "lastamonate" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "antaŭ {months} monatoj" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "monatoj antaŭe" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "lastajare" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "jaroj antaŭe" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Akcepti" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Nuligi" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Elekti" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Jes" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Ne" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Ne indikiĝis tipo de la objekto." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -246,15 +243,15 @@ msgstr "Ne indikiĝis tipo de la objekto." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Eraro" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Ne indikiĝis nomo de la aplikaĵo." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "La necesa dosiero {file} ne instaliĝis!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -262,123 +259,123 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Kunhavigi" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Eraro dum kunhavigo" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Eraro dum malkunhavigo" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Eraro dum ŝanĝo de permesoj" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Kunhavigita kun vi kaj la grupo {group} de {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Kunhavigita kun vi de {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Kunhavigi kun" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Kunhavigi per ligilo" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Protekti per pasvorto" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Pasvorto" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Retpoŝti la ligilon al ulo" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Sendi" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Agordi limdaton" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Limdato" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Kunhavigi per retpoŝto:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Ne troviĝis gento" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Rekunhavigo ne permesatas" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Kunhavigita en {item} kun {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Malkunhavigi" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "povas redakti" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "alirkontrolo" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "krei" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "ĝisdatigi" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "forigi" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "kunhavigi" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Protektita per pasvorto" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Eraro dum malagordado de limdato" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Eraro dum agordado de limdato" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Sendante..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "La retpoŝtaĵo sendiĝis" +msgstr "" #: js/update.js:14 msgid "" @@ -393,15 +390,15 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "La pasvorto de ownCloud restariĝis." +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Uzu la jenan ligilon por restarigi vian pasvorton: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -409,73 +406,73 @@ msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Peto malsukcesis!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Uzantonomo" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Peti rekomencigon" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Via pasvorto rekomencis" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Al la ensaluta paĝo" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nova pasvorto" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Rekomenci la pasvorton" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Persona" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Uzantoj" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplikaĵoj" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administranto" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Helpo" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Aliro estas malpermesata" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "La nubo ne estas trovita" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Redakti kategoriojn" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Aldoni" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Sekureca averto" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -489,7 +486,7 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Ne disponeblas sekura generilo de hazardaj numeroj; bonvolu kapabligi la OpenSSL-kromaĵon por PHP." +msgstr "" #: templates/installation.php:33 msgid "" @@ -512,57 +509,57 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Krei administran konton" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Progresinta" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Datuma dosierujo" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Agordi la datumbazon" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "estos uzata" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Datumbaza uzanto" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Datumbaza pasvorto" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Datumbaza nomo" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Datumbaza tabelospaco" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Datumbaza gastigo" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Fini la instalon" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "TTT-servoj sub via kontrolo" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Elsaluti" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" @@ -572,23 +569,23 @@ msgstr "" msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Ĉu vi perdis vian pasvorton?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "memori" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Ensaluti" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -596,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "maljena" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "jena" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 84302750ac..4f9eaa2b20 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2013 -# Mariano , 2012 -# Mariano , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -23,51 +20,51 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Ne eblis movi %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Ne eblis alinomigi dosieron" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "La alŝutita dosiero nur parte alŝutiĝis" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Neniu dosiero estas alŝutita" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Mankas tempa dosierujo" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Malsukcesis skribo al disko" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -75,15 +72,15 @@ msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Nevalida dosierujo." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Dosieroj" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Kunhavigi" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -91,39 +88,39 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Forigi" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Alinomigi" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Traktotaj" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} jam ekzistas" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "anstataŭigi" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "sugesti nomon" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "nuligi" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "anstataŭiĝis {new_name} per {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "malfari" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -131,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 dosiero estas alŝutata" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -139,17 +136,17 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' ne estas valida dosiernomo." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Dosiernomo devas ne malpleni." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -163,116 +160,116 @@ msgstr "" msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Ne haveblas sufiĉa spaco" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "La alŝuto nuliĝis." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL ne povas esti malplena." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Eraro" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nomo" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Grando" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modifita" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 dosierujo" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} dosierujoj" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 dosiero" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} dosierujoj" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Alŝuti" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Dosieradministro" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksimuma alŝutogrando" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maks. ebla: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Necesa por elŝuto de pluraj dosieroj kaj dosierujoj." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Kapabligi ZIP-elŝuton" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 signifas senlime" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maksimuma enirgrando por ZIP-dosieroj" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Konservi" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nova" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Tekstodosiero" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Dosierujo" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "El ligilo" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -280,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Nuligi alŝuton" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -288,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Nenio estas ĉi tie. Alŝutu ion!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Elŝuti" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Malkunhavigi" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Elŝuto tro larĝa" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Dosieroj estas skanataj, bonvolu atendi." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Nuna skano" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index e909ea87bf..199af2bd45 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Ĉifrado" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Nenio" +msgstr "" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index ab62bab36e..dd44e21e07 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -20,23 +19,23 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Alirpermeso donita" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Eraro dum agordado de la memorservo Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Doni alirpermeson" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Eraro dum agordado de la memorservo Google Drive" +msgstr "" #: lib/config.php:431 msgid "" @@ -60,11 +59,11 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Malena memorilo" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Dosierujnomo" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -72,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Agordo" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Malneproj" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Aplikebla" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -88,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Nenio agordita" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Ĉiuj uzantoj" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupoj" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Uzantoj" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Forigi" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Kapabligi malenan memorilon de uzanto" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Permesi al uzantoj surmeti siajn proprajn malenajn memorilojn" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Radikaj SSL-atestoj" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Enporti radikan ateston" +msgstr "" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index e8fc61e328..b98d237447 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Pasvorto" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Sendi" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s kunhavigis la dosierujon %s kun vi" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s kunhavigis la dosieron %s kun vi" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Elŝuti" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Ne haveblas antaŭvido por" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "TTT-servoj regataj de vi" +msgstr "" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index ef1aba79f4..5a4d585575 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Eraro" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nomo" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 dosierujo" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} dosierujoj" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 dosiero" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} dosierujoj" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -73,12 +73,12 @@ msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Restaŭri" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Forigi" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Forigitaj dosieroj" +msgstr "" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index 03a9d97ec3..64f8bb8581 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Mariano , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Ne eblas malfari: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "sukceso" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Dosiero %s estis malfarita al versio %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "malsukceso" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Ne eblis malfari dosieron %s al versio %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Neniu malnova versio disponeblas" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Neniu vojo estas specifita" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versioj" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Malfari dosieron al antaŭa versio per klako sur sia malfarad-butono" +msgstr "" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 1bd6af554d..434da436cc 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -20,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Helpo" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Persona" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Agordo" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Uzantoj" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplikaĵoj" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administranto" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP-elŝuto estas malkapabligita." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Dosieroj devas elŝutiĝi unuope." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Reen al la dosieroj" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -64,27 +63,27 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "La aplikaĵo ne estas kapabligita" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Aŭtentiga eraro" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Dosieroj" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Teksto" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Bildoj" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -114,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sekundojn antaŭe" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "antaŭ 1 minuto" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "antaŭ %d minutoj" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "antaŭ 1 horo" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "antaŭ %d horoj" +msgstr "" #: template.php:118 msgid "today" -msgstr "hodiaŭ" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "hieraŭ" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "antaŭ %d tagoj" +msgstr "" #: template.php:121 msgid "last month" -msgstr "lasta monato" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "antaŭ %d monatoj" +msgstr "" #: template.php:123 msgid "last year" -msgstr "lasta jaro" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "jarojn antaŭe" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s haveblas. Ekhavu pli da informo" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "ĝisdata" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "ĝisdateckontrolo estas malkapabligita" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Ne troviĝis kategorio “%s”" +msgstr "" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 3e945734ea..4965b67b3f 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2013 -# Mariano , 2012 -# Mariano , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -22,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Ne eblis ŝargi liston el aplikaĵovendejo" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Aŭtentiga eraro" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -39,53 +36,53 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "La grupo jam ekzistas" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Ne eblis aldoni la grupon" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Ne eblis kapabligi la aplikaĵon." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "La retpoŝtadreso konserviĝis" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Nevalida retpoŝtadreso" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Ne eblis forigi la grupon" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Ne eblis forigi la uzanton" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "La lingvo estas ŝanĝita" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Nevalida peto" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administrantoj ne povas forigi sin mem el la administra grupo." +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Ne eblis aldoni la uzanton al la grupo %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Ne eblis forigi la uzantan el la grupo %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -97,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Malkapabligi" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Kapabligi" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -109,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Eraro" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -125,15 +122,15 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Konservante..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "forigita" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "malfari" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -142,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupoj" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupadministranto" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Forigi" +msgstr "" #: js/users.js:262 msgid "add group" @@ -170,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Esperanto" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Sekureca averto" +msgstr "" #: templates/admin.php:18 msgid "" @@ -321,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Pli" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Malpli" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Eldono" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -339,60 +336,60 @@ msgid "" "licensed under the AGPL." -msgstr "Ellaborita de la komunumo de ownCloud, la fontokodo publikas laŭ la permesilo AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Aldonu vian aplikaĵon" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Pli da aplikaĵoj" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Elekti aplikaĵon" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-permesilhavigita de " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Ĝisdatigi" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Dokumentaro por uzantoj" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Dokumentaro por administrantoj" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Reta dokumentaro" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forumo" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Cimoraportejo" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Komerca subteno" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Vi uzas %s el la haveblaj %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" @@ -404,27 +401,27 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Pasvorto" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Via pasvorto ŝanĝiĝis" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Ne eblis ŝanĝi vian pasvorton" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Nuna pasvorto" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nova pasvorto" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Ŝanĝi la pasvorton" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -432,31 +429,31 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Retpoŝto" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Via retpoŝta adreso" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Enigu retpoŝtadreson por kapabligi pasvortan restaŭron" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Lingvo" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Helpu traduki" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Uzu ĉi tiun adreson por konekti al via ownCloud vian dosieradministrilon" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" @@ -464,23 +461,23 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Krei" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Defaŭlta konservejo" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Senlima" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Alia" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Konservejo" +msgstr "" #: templates/users.php:93 msgid "change display name" @@ -492,4 +489,4 @@ msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Defaŭlta" +msgstr "" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index ae0cd9b839..70925a66a4 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2013. -# Mariano , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -41,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Forigo malsukcesis" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -94,16 +92,16 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Gastigo" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Vi povas neglekti la protokolon, escepte se vi bezonas SSL-on. Tiuokaze, komencu per ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Bazo-DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" @@ -115,7 +113,7 @@ msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Uzanto-DN" +msgstr "" #: templates/settings.php:45 msgid "" @@ -126,51 +124,51 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Pasvorto" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Por sennoman aliron, lasu DN-on kaj Pasvorton malplenaj." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtrilo de uzantensaluto" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Ĝi difinas la filtrilon aplikotan, kiam oni provas ensaluti. %%uid anstataŭigas la uzantonomon en la ensaluta ago." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "uzu la referencilon %%uid, ekz.: \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Filtrilo de uzantolisto" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Ĝi difinas la filtrilon aplikotan, kiam veniĝas uzantoj." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "sen ajna referencilo, ekz.: \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filtrilo de grupo" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Ĝi difinas la filtrilon aplikotan, kiam veniĝas grupoj." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "sen ajna referencilo, ekz.: \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" @@ -186,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Pordo" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -212,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Uzi TLS-on" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -220,21 +218,21 @@ msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP-servilo blinda je litergrandeco (Vindozo)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Malkapabligi validkontrolon de SSL-atestiloj." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Se la konekto nur funkcias kun ĉi tiu malnepro, enportu la SSL-atestilo de la LDAP-servilo en via ownCloud-servilo." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Ne rekomendata, uzu ĝin nur por testoj." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -242,7 +240,7 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "sekunde. Ajna ŝanĝo malplenigas la kaŝmemoron." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" @@ -250,15 +248,15 @@ msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Kampo de vidignomo de uzanto" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "La atributo de LDAP uzota por generi la ownCloud-an nomon de la uzanto." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Baza uzantarbo" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" @@ -274,15 +272,15 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Kampo de vidignomo de grupo" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "La atributo de LDAP uzota por generi la ownCloud-an nomon de la grupo." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Baza gruparbo" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" @@ -294,7 +292,7 @@ msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Asocio de grupo kaj membro" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -310,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "duumoke" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -324,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Lasu malplena por uzantonomo (defaŭlto). Alie, specifu LDAP/AD-atributon." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -332,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Helpo" +msgstr "" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3fbfff5190..7407c95b20 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -3,26 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# felix.liberio , 2013 -# Javierkaiser , 2012 -# Javier Llorente , 2012 -# juanman , 2013 -# juanman , 2011-2013 -# malmirk , 2012 -# oSiNaReF <>, 2012 -# Raul Fernandez Garcia , 2012 -# rodrigo.calvo , 2012 -# Romain DEP. , 2011 -# Rubén Trujillo , 2012 -# xsergiolpx , 2011-2012 -# scambra , 2012 -# msvladimir , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -34,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "El usuario %s ha compartido un archivo contigo" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "El usuario %s ha compartido una carpeta contigo" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Tipo de categoria no proporcionado." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "¿Ninguna categoría para añadir?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Esta categoria ya existe: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "ipo de objeto no proporcionado." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID no proporcionado." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Error añadiendo %s a los favoritos." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "No hay categorías seleccionadas para borrar." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Error eliminando %s de los favoritos." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Domingo" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Lunes" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Martes" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Miércoles" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Jueves" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Viernes" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sábado" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Enero" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Febrero" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Marzo" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Abril" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mayo" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Junio" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Julio" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Agosto" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Septiembre" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Octubre" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Noviembre" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Diciembre" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Ajustes" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "hace segundos" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "hace 1 minuto" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "hace {minutes} minutos" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "Hace 1 hora" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "Hace {hours} horas" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "hoy" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "ayer" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "hace {days} días" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "mes pasado" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "Hace {months} meses" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "hace meses" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "año pasado" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "hace años" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Aceptar" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Cancelar" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Seleccionar" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Sí" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "No" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "El tipo de objeto no se ha especificado." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -257,363 +243,363 @@ msgstr "El tipo de objeto no se ha especificado." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Fallo" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "El nombre de la app no se ha especificado." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "El fichero {file} requerido, no está instalado." +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Compartido" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Compartir" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Error compartiendo" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Error descompartiendo" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Error cambiando permisos" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Compartido contigo y el grupo {group} por {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Compartido contigo por {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Compartir con" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Compartir con enlace" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Protegido por contraseña" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Contraseña" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Enviar un enlace por correo electrónico a una persona" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Enviar" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Establecer fecha de caducidad" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Fecha de caducidad" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "compartido via e-mail:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "No se encontró gente" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "No se permite compartir de nuevo" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Compartido en {item} con {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "No compartir" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "puede editar" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "control de acceso" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "crear" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "modificar" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "eliminar" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "compartir" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Protegido por contraseña" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Error al eliminar la fecha de caducidad" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Error estableciendo fecha de caducidad" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Enviando..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Correo electrónico enviado" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "La actualización ha fracasado. Por favor, informe este problema a la Comunidad de ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "La actualización se ha realizado correctamente. Redireccionando a ownCloud ahora." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Reiniciar contraseña de ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Utiliza el siguiente enlace para restablecer tu contraseña: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Recibirás un enlace por correo electrónico para restablecer tu contraseña" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Email de reconfiguración enviado." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Pedido fallado!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nombre de usuario" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Solicitar restablecimiento" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Tu contraseña se ha restablecido" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "A la página de inicio de sesión" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nueva contraseña" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Restablecer contraseña" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personal" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Usuarios" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplicaciones" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administrador" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Ayuda" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acceso denegado" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "No se ha encontrado la nube" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Editar categorías" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Añadir" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Advertencia de seguridad" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "La versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Por favor, actualice su instalación de PHP para utilizar ownCloud en forma segura." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de su contraseña y tomar control de su cuenta." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Su directorio de datos y sus archivos están probablemente accesibles a través de internet ya que el archivo .htaccess no está funcionando." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Para información sobre cómo configurar adecuadamente su servidor, por favor vea la documentación." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Crea una cuenta de administrador" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avanzado" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Directorio de almacenamiento" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configurar la base de datos" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "se utilizarán" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Usuario de la base de datos" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Contraseña de la base de datos" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nombre de la base de datos" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Espacio de tablas de la base de datos" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Host de la base de datos" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Completar la instalación" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "servicios web bajo tu control" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Salir" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "¡Inicio de sesión automático rechazado!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "¿Has perdido tu contraseña?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "recuérdame" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Entrar" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Nombre de usuarios alternativos" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "anterior" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "siguiente" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." +msgstr "" diff --git a/l10n/es/files.po b/l10n/es/files.po index 2daf4603b8..5e8c1e2935 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -3,26 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012 -# Agustin Ferrario , 2013 -# telco2011 , 2013 -# Luis Medina , 2012 -# Javier Llorente , 2012 -# juanman , 2013 -# juanman , 2012-2013 -# karv , 2013 -# Ricardo Hermosilla , 2013 -# Rubén Trujillo , 2012 -# xsergiolpx , 2013 -# xsergiolpx , 2011-2012 -# scambra , 2012 -# msvladimir , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -34,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "No se puede mover %s - Ya existe un archivo con ese nombre" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "No se puede mover %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "No se puede renombrar el archivo" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Fallo no se subió el fichero" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "No se ha producido ningún error, el archivo se ha subido con éxito" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "El archivo que intentas subir solo se subió parcialmente" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "No se ha subido ningún archivo" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Falta un directorio temporal" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "La escritura en disco ha fallado" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "No hay suficiente espacio disponible" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Directorio invalido." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Archivos" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Compartir" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Eliminar permanentemente" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Eliminar" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Renombrar" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Pendiente" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} ya existe" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "reemplazar" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "sugerir nombre" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "cancelar" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "reemplazado {new_name} con {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "deshacer" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "Eliminar" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "subiendo 1 archivo" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "subiendo archivos" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' es un nombre de archivo inválido." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "El nombre de archivo no puede estar vacío." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Su almacenamiento esta lleno, los archivos no pueden ser mas actualizados o sincronizados!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Su almacenamiento esta lleno en un ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "No hay suficiente espacio disponible" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Subida cancelada." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "La URL no puede estar vacía." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nombre de carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Error" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nombre" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Tamaño" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modificado" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 carpeta" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} carpetas" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 archivo" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} archivos" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Subir" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Tratamiento de archivos" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Tamaño máximo de subida" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "máx. posible:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Se necesita para descargas multi-archivo y de carpetas" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Habilitar descarga en ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 es ilimitado" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Tamaño máximo para archivos ZIP de entrada" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Guardar" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nuevo" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Archivo de texto" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Carpeta" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Desde el enlace" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Archivos eliminados" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Cancelar subida" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "No tienes permisos para escribir aquí." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Aquí no hay nada. ¡Sube algo!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Descargar" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Dejar de compartir" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "El archivo es demasiado grande" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Se están escaneando los archivos, por favor espere." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Ahora escaneando" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Actualizando cache de archivos de sistema" +msgstr "" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index 3300c20e3c..fa26cad481 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Felix Liberio , 2013. -# , 2012. -# Raul Fernandez Garcia , 2013. -# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -23,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Cifrado" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "La encriptacion de archivo esta activada." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Los siguientes tipos de archivo no seran encriptados:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Excluir los siguientes tipos de archivo de la encriptacion:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ninguno" +msgstr "" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 8e3a88466f..8ee51561f3 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -3,19 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012 -# Art O. Pal , 2013 -# Javier Llorente , 2012 -# Marcos , 2013 -# pedro.navia , 2012 -# Raul Fernandez Garcia , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 03:10+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Acceso garantizado" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Error configurando el almacenamiento de Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Garantizar acceso" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Por favor , proporcione un secreto y una contraseña válida de la app Dropbox." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Error configurando el almacenamiento de Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Advertencia: El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Almacenamiento externo" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nombre de la carpeta" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Almacenamiento externo" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Configuración" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opciones" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Aplicable" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Añadir almacenamiento" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "No se ha configurado" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Todos los usuarios" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupos" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Usuarios" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Eliiminar" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Habilitar almacenamiento de usuario externo" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Permitir a los usuarios montar su propio almacenamiento externo" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Raíz de certificados SSL " +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importar certificado raíz" +msgstr "" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 8f976d5650..3652c7bd5a 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Javier Llorente , 2012. -# , 2012. -# Rubén Trujillo , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -22,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Contraseña" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Enviar" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s compartió la carpeta %s contigo" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s compartió el fichero %s contigo" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Descargar" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "No hay vista previa disponible para" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "Servicios web bajo su control" +msgstr "" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 6467cca481..9d53f1a4ae 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "No se puede eliminar %s permanentemente" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "No se puede restaurar %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "Restaurar" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Error" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "Eliminar archivo permanentemente" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Eliminar permanentemente" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nombre" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Eliminado" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 carpeta" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} carpetas" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 archivo" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} archivos" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Recuperar" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Eliminar" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Archivos Eliminados" +msgstr "" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 61295e5517..2269d07b97 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Javier Llorente , 2012. -# , 2012. -# Rubén Trujillo , 2012. -# , 2012. -# vicente rmz , 2013. -# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -26,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "No se puede revertir: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "exitoso" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "El archivo %s fue revertido a la version %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "fallo" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "El archivo %s no puede ser revertido a la version %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "No hay versiones antiguas disponibles" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Ruta no especificada" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Revisiones" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Revertir un archivo a una versión anterior haciendo clic en el boton de revertir" +msgstr "" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index a30ce7986e..705f8e5ee4 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -3,20 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2013 -# juanman , 2013 -# juanman , 2012 -# Marcos , 2013 -# Raul Fernandez Garcia , 2012 -# Ricardo Hermosilla , 2013 -# Rubén Trujillo , 2012 -# scambra , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -27,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Ayuda" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personal" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Ajustes" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Usuarios" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplicaciones" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administración" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "La descarga en ZIP está desactivada." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Los archivos deben ser descargados uno por uno." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Volver a Archivos" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "no pudo ser determinado" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "La aplicación no está habilitada" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Error de autenticación" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token expirado. Por favor, recarga la página." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Archivos" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Texto" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Imágenes" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Configurar un nombre de usuario del administrador" +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Configurar la contraseña del administrador." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s ingresar el usuario de la base de datos." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s ingresar el nombre de la base de datos" +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s no se puede utilizar puntos en el nombre de la base de datos" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s ingresar el host de la base de datos." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Usuario y/o contraseña de PostgreSQL no válidos" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Tiene que ingresar una cuenta existente o la del administrador." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Usuario y/o contraseña de Oracle no válidos" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Usuario y/o contraseña de MySQL no válidos" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Error BD: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Comando infractor: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Usuario MySQL '%s'@'localhost' ya existe." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Eliminar este usuario de MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Usuario MySQL '%s'@'%%' ya existe" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Eliminar este usuario de MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Por favor, vuelva a comprobar las guías de instalación." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "hace segundos" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "hace 1 minuto" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "hace %d minutos" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "Hace 1 hora" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "Hace %d horas" +msgstr "" #: template.php:118 msgid "today" -msgstr "hoy" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "ayer" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "hace %d días" +msgstr "" #: template.php:121 msgid "last month" -msgstr "este mes" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "Hace %d meses" +msgstr "" #: template.php:123 msgid "last year" -msgstr "este año" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "hace años" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s está disponible. Obtén más información" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "actualizado" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "comprobar actualizaciones está desactivado" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "No puede encontrar la categoria \"%s\"" +msgstr "" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 548cd2b449..b0bc376d96 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -3,30 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Art O. Pal , 2012 -# dfml , 2013 -# telco2011 , 2012 -# Javier Llorente , 2012 -# juanman , 2013 -# juanman , 2011-2012 -# Marcos , 2013 -# Dante_King , 2011 -# oSiNaReF <>, 2012 -# pedro.navia , 2013 -# pggx999 , 2012 -# Raul Fernandez Garcia , 2012 -# Ricardo Hermosilla , 2013 -# rodrigo.calvo , 2012 -# Romain DEP. , 2011 -# Rubén Trujillo , 2012 -# xsergiolpx , 2011-2012 -# msvladimir , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -37,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Imposible cargar la lista desde el App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Error de autenticación" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -50,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Incapaz de cambiar el nombre" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "El grupo ya existe" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "No se pudo añadir el grupo" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "No puedo habilitar la app." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Correo guardado" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Correo no válido" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "No se pudo eliminar el grupo" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "No se pudo eliminar el usuario" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Idioma cambiado" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Solicitud no válida" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Imposible añadir el usuario al grupo %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Imposible eliminar al usuario del grupo %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "No se puedo actualizar la aplicacion." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Actualizado a {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Desactivar" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Activar" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Espere por favor...." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Error" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Actualizando...." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Error mientras se actualizaba" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Actualizado" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Guardando..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "borrado" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "deshacer" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "No se puede quitar el usuario" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupos" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupo admin" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Eliminar" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "Añadir Grupo" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Se debe usar un nombre de usuario valido" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Error al crear usuario" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Se debe usar una contraseña valida" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Castellano" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Advertencia de seguridad" +msgstr "" #: templates/admin.php:18 msgid "" @@ -198,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Su directorio de datos y sus archivos son probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Sugerimos fuertemente que configure su servidor web de manera que el directorio de datos ya no esté accesible o mueva el directorio de datos fuera del documento raíz de su servidor web." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Advertencia de Configuración" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Por favor, vuelva a comprobar las guías de instalación." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Modulo 'fileinfo' perdido" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "El modulo PHP 'fileinfo' no se encuentra. Sugerimos habilitar este modulo para tener mejorres resultados con la detección mime-type" +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Configuración regional no está funcionando" +msgstr "" #: templates/admin.php:63 #, php-format @@ -235,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Este servidor ownCloud no puede establecer la configuración regional a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos. Le recomendamos que instale los paquetes requeridos en su sistema para soportar %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "La conexion a internet no esta funcionando" +msgstr "" #: templates/admin.php:78 msgid "" @@ -249,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Este servidor ownCloud no tiene conexion de internet. Esto quiere decir que algunas caracteristicas como montar almacenamiento externo, notificaciones sobre actualizaciones o la instalacion de apps de terceros no funcionaran. Es posible que no pueda acceder remotamente a los archivos ni enviar notificaciones por correo. Sugerimos habilitar la conexión a internet para este servidor si quiere tener todas las caracteristicas de ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Ejecutar una tarea con cada página cargada" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php es un sistema webcron registrado. Llame a la página cron.php en la raíz de owncloud una vez por minuto sobre http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Utilizar el servicio cron del sistema. Llame al archivo cron.php en la carpeta de owncloud a través de un cronjob del sistema una vez por minuto." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Compartiendo" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Activar API de Compartición" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Permitir a las aplicaciones utilizar la API de Compartición" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Permitir enlaces" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Permitir a los usuarios compartir elementos al público con enlaces" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Permitir re-compartición" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Permitir a los usuarios compartir elementos ya compartidos con ellos mismos" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Permitir a los usuarios compartir con todos" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Seguridad" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Forzar HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forzar la conexión de los clientes a ownCloud con una conexión encriptada." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Por favor, conecte esta instancia de ownCloud vía HTTPS para activar o desactivar la aplicación de SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Historial" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Nivel de Historial" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Más" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Menos" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Version" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -354,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Añade tu aplicación" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Más aplicaciones" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Seleccionar una aplicación" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Echa un vistazo a la web de aplicaciones apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licenciado por " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Actualizar" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Documentación del usuario" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Documentación del adminsitrador" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Documentación en linea" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Foro" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Rastreador de Bugs" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Soporte Comercial" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Ha usado %s de %s disponibles" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Obtener las apps para sincronizar sus archivos" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Mostrar asistente para iniciar otra vez" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Contraseña" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Su contraseña ha sido cambiada" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "No se ha podido cambiar tu contraseña" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Contraseña actual" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nueva contraseña:" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Cambiar contraseña" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Nombre a mostrar" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Correo electrónico" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Tu dirección de correo" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Escribe una dirección de correo electrónico para restablecer la contraseña" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Idioma" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Ayúdanos a traducir" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Nombre de usuario" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Crear" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Almacenamiento Predeterminado" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Ilimitado" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Otro" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Alamacenamiento" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "Cambiar nombre a mostrar" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "Configurar nueva contraseña" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Predeterminado" +msgstr "" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 3043a99312..b481dbcc27 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -3,20 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Felix Liberio , 2013. -# Javier Llorente , 2012. -# , 2012. -# , 2012. -# Raul Fernandez Garcia , 2012-2013. -# Rubén Trujillo , 2012. -# , 2012. -# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -27,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "No se pudo borrar la configuración del servidor" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "La configuración es válida y la conexión puede establecerse!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "La configuración no es válida. Por favor, busque en el log de ownCloud para más detalles." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Falló el borrado" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Hacerse cargo de los ajustes de configuración del servidor reciente?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Mantener la configuración?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "No se puede añadir la configuración del servidor" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "La prueba de conexión fue exitosa" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "La prueba de conexión falló" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "¿Realmente desea eliminar la configuración actual del servidor?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Confirmar eliminación" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Advertencia: Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Advertencia: El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Configuración del Servidor" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Agregar configuracion del servidor" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Servidor" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN base" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Un DN Base por línea" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN usuario" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Contraseña" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Para acceso anónimo, deje DN y contraseña vacíos." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtro de inicio de sesión de usuario" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazrá el nombre de usuario en el proceso de login." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "usar %%uid como placeholder, ej: \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Lista de filtros de usuario" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Define el filtro a aplicar, cuando se obtienen usuarios." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "Sin placeholder, ej: \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filtro de grupo" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Define el filtro a aplicar, cuando se obtienen grupos." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "Con cualquier placeholder, ej: \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Configuracion de coneccion" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Configuracion activa" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Cuando deseleccione, esta configuracion sera omitida." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Puerto" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Host para backup (Replica)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Dar un host de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP / AD." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Puerto para backup (Replica)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Deshabilitar servidor principal" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Cuando se inicie, ownCloud unicamente estara conectado al servidor replica" +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Usar TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "No usar adicionalmente para conecciones LDAPS, estas fallaran" +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Apagar la validación por certificado SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "No recomendado, sólo para pruebas." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Cache TTL" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "en segundos. Un cambio vacía la cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Configuracion de directorio" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Campo de nombre de usuario a mostrar" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Árbol base de usuario" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Un DN Base de Usuario por línea" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Atributos de la busqueda de usuario" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Opcional; un atributo por linea" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Campo de nombre de grupo a mostrar" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Árbol base de grupo" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Un DN Base de Grupo por línea" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atributos de busqueda de grupo" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Asociación Grupo-Miembro" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Atributos especiales" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Cuota" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Cuota por defecto" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "en bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "E-mail" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Regla para la carpeta Home de usuario" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Configuración de prueba" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Ayuda" +msgstr "" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 9a213ae254..22c76d31d5 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# cjtess , 2013 -# cjtess , 2012-2013 -# Javierkaiser , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -23,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "El usurario %s compartió un archivo con vos." +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "El usurario %s compartió una carpeta con vos." +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Tipo de categoría no provisto. " +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "¿Ninguna categoría para añadir?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Esta categoría ya existe: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Tipo de objeto no provisto. " +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID no provista. " +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Error al agregar %s a favoritos. " +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "No hay categorías seleccionadas para borrar." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Error al remover %s de favoritos. " +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Domingo" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Lunes" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Martes" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Miércoles" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Jueves" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Viernes" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sábado" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Enero" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Febrero" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Marzo" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Abril" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mayo" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Junio" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Julio" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Agosto" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Septiembre" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Octubre" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Noviembre" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Diciembre" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Ajustes" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "segundos atrás" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "hace 1 minuto" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "hace {minutes} minutos" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "Hace 1 hora" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} horas atrás" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "hoy" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "ayer" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "hace {days} días" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "el mes pasado" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} meses atrás" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "meses atrás" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "el año pasado" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "años atrás" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Aceptar" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Cancelar" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Elegir" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Sí" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "No" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "El tipo de objeto no esta especificado. " +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -246,363 +243,363 @@ msgstr "El tipo de objeto no esta especificado. " #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Error" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "El nombre de la aplicación no esta especificado." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "¡El archivo requerido {file} no está instalado!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Compartido" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Compartir" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Error al compartir" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Error en el procedimiento de " +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Error al cambiar permisos" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Compartido con vos y el grupo {group} por {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Compartido con vos por {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Compartir con" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Compartir con link" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Proteger con contraseña " +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Contraseña" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Enviar el link por e-mail." +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Enviar" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Asignar fecha de vencimiento" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Fecha de vencimiento" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "compartido a través de e-mail:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "No se encontraron usuarios" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "No se permite volver a compartir" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Compartido en {item} con {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Remover compartir" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "puede editar" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "control de acceso" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "crear" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "actualizar" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "borrar" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "compartir" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Protegido por contraseña" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Error al remover la fecha de caducidad" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Error al asignar fecha de vencimiento" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Enviando..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Email enviado" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "La actualización fue exitosa. Estás siendo redirigido a ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Restablecer contraseña de ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Usá este enlace para restablecer tu contraseña: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Reiniciar envío de email." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Error en el pedido!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nombre de usuario" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Solicitar restablecimiento" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Tu contraseña fue restablecida" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "A la página de inicio de sesión" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nueva contraseña" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Restablecer contraseña" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personal" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Usuarios" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplicaciones" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administrador" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Ayuda" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acceso denegado" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "No se encontró ownCloud" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Editar categorías" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Agregar" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Advertencia de seguridad" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "La versión de PHP que tenés, es vulnerable al ataque de byte NULL (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Actualizá tu instalación de PHP para usar ownCloud de manera segura." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Tu directorio de datos y tus archivos probablemente son accesibles a través de internet, ya que el archivo .htaccess no está funcionando." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Para información sobre cómo configurar adecuadamente tu servidor, por favor mirá la documentación." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Crear una cuenta de administrador" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avanzado" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Directorio de almacenamiento" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configurar la base de datos" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "se utilizarán" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Usuario de la base de datos" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Contraseña de la base de datos" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nombre de la base de datos" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Espacio de tablas de la base de datos" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Host de la base de datos" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Completar la instalación" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "servicios web sobre los que tenés control" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Cerrar la sesión" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "¡El inicio de sesión automático fue rechazado!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "¿Perdiste tu contraseña?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "recordame" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Entrar" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Nombre alternativos de usuarios" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "anterior" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "siguiente" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Actualizando ownCloud a la versión %s, puede domorar un rato." +msgstr "" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 723bbc9530..e36cf0f532 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012-2013 -# cjtess , 2013 -# cjtess , 2012-2013 -# Javier Victor Mariano Bruno , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -24,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "No se pudo mover %s " +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "No fue posible cambiar el nombre al archivo" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "El archivo no fue subido. Error desconocido" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "No se han producido errores, el archivo se ha subido con éxito" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "El archivo que intentás subir solo se subió parcialmente" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "El archivo no fue subido" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Falta un directorio temporal" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Error al escribir en el disco" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "No hay suficiente capacidad de almacenamiento" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Directorio invalido." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Archivos" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Compartir" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Borrar de manera permanente" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Borrar" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Cambiar nombre" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Pendiente" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} ya existe" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "reemplazar" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "sugerir nombre" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "cancelar" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "reemplazado {new_name} con {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "deshacer" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "Eliminar" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "Subiendo 1 archivo" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "Subiendo archivos" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' es un nombre de archivo inválido." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "El nombre del archivo no puede quedar vacío." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "No hay suficiente espacio disponible" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "La subida fue cancelada" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "La URL no puede estar vacía" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Error" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nombre" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Tamaño" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modificado" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 directorio" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} directorios" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 archivo" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} archivos" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Subir" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Tratamiento de archivos" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Tamaño máximo de subida" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "máx. posible:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Es necesario para descargas multi-archivo y de carpetas" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Habilitar descarga en formato ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 significa ilimitado" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Tamaño máximo para archivos ZIP de entrada" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Guardar" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nuevo" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Archivo de texto" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Carpeta" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Desde enlace" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Archivos Borrados" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Cancelar subida" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "No tenés permisos de escritura acá." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "No hay nada. ¡Subí contenido!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Descargar" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Dejar de compartir" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "El archivo es demasiado grande" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Se están escaneando los archivos, por favor esperá." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Escaneo actual" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Actualizando el cache del sistema de archivos" +msgstr "" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index e51d601c61..6b4193ddb4 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# CJTess , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Encriptación" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "La encriptación de archivos no está habilitada" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Los siguientes tipos de archivos no serán encriptados" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Excluir los siguientes tipos de archivos de encriptación:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ninguno" +msgstr "" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index c0c3d7522e..6a08069d8a 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012 -# cjtess , 2012 -# juliabis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -22,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Acceso permitido" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Error al configurar el almacenamiento de Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Permitir acceso" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Por favor, proporcioná un secreto y una contraseña válida para la aplicación Dropbox." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Error al configurar el almacenamiento de Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale." +msgstr "" #: lib/config.php:437 msgid "" @@ -62,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Almacenamiento externo" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nombre de la carpeta" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Almacenamiento externo" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Configuración" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opciones" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Aplicable" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Añadir almacenamiento" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "No fue configurado" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Todos los usuarios" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupos" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Usuarios" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Borrar" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Habilitar almacenamiento de usuario externo" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Permitir a los usuarios montar su propio almacenamiento externo" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "certificados SSL raíz" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importar certificado raíz" +msgstr "" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index bf0799a222..ee24d08c72 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Contraseña" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Enviar" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s compartió la carpeta %s con vos" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s compartió el archivo %s con vos" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Descargar" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "La vista preliminar no está disponible para" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "servicios web controlados por vos" +msgstr "" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index b3f0b5a9fd..a44b87a91b 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# CJTess , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "No fue posible borrar %s de manera permanente" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "No se pudo restaurar %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "Restaurar" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Error" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "Borrar archivo de manera permanente" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Borrar de manera permanente" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nombre" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Borrado" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 directorio" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} directorios" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 archivo" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} archivos" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "No hay nada acá. ¡La papelera está vacía!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Recuperar" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Borrar" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Archivos eliminados" +msgstr "" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po index b880bde3d9..f3a0b69cad 100644 --- a/l10n/es_AR/files_versions.po +++ b/l10n/es_AR/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# CJTess , 2013. -# , 2012. -# Julia , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -23,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "No se pudo revertir: %s " +msgstr "" #: history.php:40 msgid "success" -msgstr "Éxito" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "El archivo %s fue revertido a la versión %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "error" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "El archivo %s no pudo ser revertido a la versión %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "No hay versiones antiguas disponibles" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Ruta de acceso no especificada" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versiones" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Revertí un archivo a una versión anterior haciendo click en su botón de \"revertir\"" +msgstr "" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 20c71ecabd..a327731c06 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2013 -# cjtess , 2013 -# cjtess , 2012 -# Javier Victor Mariano Bruno , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -23,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Ayuda" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personal" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Ajustes" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Usuarios" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplicaciones" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administración" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "La descarga en ZIP está desactivada." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Los archivos deben ser descargados de a uno." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Volver a archivos" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "no pudo ser determinado" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "La aplicación no está habilitada" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Error de autenticación" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token expirado. Por favor, recargá la página." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Archivos" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Texto" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Imágenes" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Configurar un nombre de administrador" +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Configurar una palabra clave de administrador" +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s Entre el Usuario de la Base de Datos" +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s Entre el Nombre de la Base de Datos" +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s no puede usar puntos en el nombre de la Base de Datos" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s Especifique la dirección de la Base de Datos" +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Nombre de usuario o contraseña de PostgradeSQL no válido." +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Debe ingresar una cuenta existente o el administrador" +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "El nombre de usuario y contraseña no son válidos" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Usuario y/o contraseña MySQL no válido" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Error DB: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "El comando no comprendido es: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Usuario MySQL '%s'@'localhost' ya existente" +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Borrar este usuario de MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Usuario MySQL '%s'@'%%' ya existente" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Borrar este usuario de MySQL" +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nombre de usuario y contraseña de MS SQL no son válidas: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Por favor, comprobá nuevamente la guía de instalación." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "hace unos segundos" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "hace 1 minuto" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "hace %d minutos" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 hora atrás" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d horas atrás" +msgstr "" #: template.php:118 msgid "today" -msgstr "hoy" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "ayer" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "hace %d días" +msgstr "" #: template.php:121 msgid "last month" -msgstr "este mes" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d meses atrás" +msgstr "" #: template.php:123 msgid "last year" -msgstr "este año" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "hace años" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s está disponible. Conseguí más información" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "actualizado" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "comprobar actualizaciones está desactivado" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "No fue posible encontrar la categoría \"%s\"" +msgstr "" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 9caac3184a..2776cdfdea 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012 -# cjtess , 2013 -# cjtess , 2012 -# Javier Victor Mariano Bruno , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -23,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Imposible cargar la lista desde el App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Error al autenticar" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -36,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "No fue posible cambiar el nombre mostrado" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "El grupo ya existe" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "No fue posible añadir el grupo" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "No se puede habilitar la aplicación." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "e-mail guardado" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "el e-mail no es válido " +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "No fue posible eliminar el grupo" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "No fue posible eliminar el usuario" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Idioma cambiado" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Solicitud no válida" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Los administradores no se pueden quitar a ellos mismos del grupo administrador. " +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "No fue posible añadir el usuario al grupo %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "No es posible eliminar al usuario del grupo %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "No se pudo actualizar la aplicación." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Actualizado a {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Desactivar" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Activar" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Por favor, esperá...." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Error" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Actualizando...." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Error al actualizar" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Actualizado" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Guardando..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "borrado" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "deshacer" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Imposible remover usuario" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupos" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupo Administrador" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Borrar" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "Agregar grupo" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Debe ingresar un nombre de usuario válido" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Error creando usuario" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Debe ingresar una contraseña válida" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Castellano (Argentina)" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Advertencia de seguridad" +msgstr "" #: templates/admin.php:18 msgid "" @@ -184,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess provisto por ownCloud no está funcionando. Te sugerimos que configures tu servidor web de manera que el directorio de datos ya no esté accesible, o que muevas el directorio de datos afuera del directorio raíz de tu servidor web." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Alerta de Configuración" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Por favor, comprobá nuevamente la guía de instalación." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Modulo 'fileinfo' no existe" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "El modulo PHP 'fileinfo' no existe. Es muy recomendable que active este modulo para obtener mejores resultados con la detección mime-type" +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "\"Locale\" no está funcionando" +msgstr "" #: templates/admin.php:63 #, php-format @@ -221,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "El servidor ownCloud no pude asignar la localización de sistema a %s. Esto puede hacer que hayan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "La conexión a Internet no esta funcionando. " +msgstr "" #: templates/admin.php:78 msgid "" @@ -235,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios como montar dispositivos externos, notificaciones de actualizaciones o instalar aplicaciones de otros desarrolladores no funcionan. Acceder a archivos remotos y mandar e-mails puede ser que tampoco funcione. Te sugerimos que actives una conexión a internet si querés estas características de ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Ejecute una tarea con cada pagina cargada." +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php está registrado como un servicio webcron. Llamar la página cron.php en la raíz de ownCloud una vez al minuto sobre http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Usa el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Compartiendo" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Habilitar Share API" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Permitir a las aplicaciones usar la Share API" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Permitir enlaces" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Permitir a los usuarios compartir enlaces públicos" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Permitir Re-Compartir" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Permite a los usuarios volver a compartir items que le han compartido" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Permitir a los usuarios compartir con todos." +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Permitir a los usuarios compartir solo con los de su propio grupo" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Seguridad" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Forzar HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forzar a los clientes conectar a ownCloud vía conexión encriptada" +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Por favor conectese a este ownCloud vía HTTPS para habilitar o des-habilitar el forzado de SSL" +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Log" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Nivel de Log" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Más" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Menos" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versión" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -340,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Añadí tu aplicación" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Más aplicaciones" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Seleccionar una aplicación" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Mirá la web de aplicaciones apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licenciado por " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Actualizar" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Documentación de Usuario" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Documentación de Administrador" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Documentación en línea" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Foro" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Informar errores" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Soporte comercial" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Usaste %s de los %s disponibles" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Obtené aplicaciones para sincronizar tus archivos" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Mostrar de nuevo el asistente de primera ejecución" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Contraseña" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Tu contraseña fue cambiada" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "No fue posible cambiar tu contraseña" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Contraseña actual" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nueva contraseña:" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Cambiar contraseña" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Nombre a mostrar" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Correo electrónico" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Tu dirección de e-mail" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Escribí una dirección de correo electrónico para restablecer la contraseña" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Idioma" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Ayudanos a traducir" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Nombre de " +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Crear" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Almacenamiento Predeterminado" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Ilimitado" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Otro" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Almacenamiento" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "Cambiar el nombre que se muestra" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "Configurar nueva contraseña" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Predeterminado" +msgstr "" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index a0f13250f4..fdd8560993 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2013. -# CJTess , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -22,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Fallo al borrar la configuración del servidor" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "La configuración es valida y la conexión pudo ser establecida." +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "La configuración es válida, pero el enlace falló. Por favor, comprobá la configuración del servidor y las credenciales." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "La configuración no es válida. Por favor, buscá en el log de ownCloud más detalles." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Error al borrar" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Tomar los valores de la anterior configuración de servidor?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "¿Mantener preferencias?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "No se pudo añadir la configuración del servidor" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "El este de conexión ha sido completado satisfactoriamente" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Falló es test de conexión" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "¿Realmente desea borrar la configuración actual del servidor?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Confirmar borrado" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Advertencia: Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Atención: El módulo PHP LDAP no está instalado, este elemento no va a funcionar. Por favor, pedile al administrador que lo instale." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Configuración del Servidor" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Añadir Configuración del Servidor" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Servidor" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN base" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Una DN base por línea" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN usuario" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, dejá DN y contraseña vacíos." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Contraseña" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Para acceso anónimo, dejá DN y contraseña vacíos." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtro de inicio de sesión de usuario" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazará el nombre de usuario en el proceso de inicio de sesión." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "usar %%uid como plantilla, p. ej.: \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Lista de filtros de usuario" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Define el filtro a aplicar, cuando se obtienen usuarios." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "Sin plantilla, p. ej.: \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filtro de grupo" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Define el filtro a aplicar cuando se obtienen grupos." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Configuración de Conección" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Configuración activa" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Si no está seleccionada, esta configuración será omitida." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Puerto" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Host para copia de seguridad (réplica)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP/AD." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Puerto para copia de seguridad (réplica)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Deshabilitar el Servidor Principal" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Al comenzar, ownCloud se conectará únicamente al servidor réplica" +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Usar TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "No usar adicionalmente para conexiones LDAPS, las mismas fallarán" +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Desactivar la validación por certificado SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "No recomendado, sólo para pruebas." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Tiempo de vida del caché" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "en segundos. Cambiarlo vacía la cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Configuración de Directorio" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Campo de nombre de usuario a mostrar" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Árbol base de usuario" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Una DN base de usuario por línea" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Atributos de la búsqueda de usuario" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Opcional; un atributo por linea" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Campo de nombre de grupo a mostrar" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Árbol base de grupo" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Una DN base de grupo por línea" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atributos de búsqueda de grupo" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Asociación Grupo-Miembro" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Atributos Especiales" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Campo de cuota" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Cuota por defecto" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "en bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Campo de e-mail" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Regla de nombre de los directorios de usuario" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Probar configuración" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Ayuda" +msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index e5dc00dc00..b7792803ab 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# pisike.sipelgas , 2013 -# Rivo Zängov , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -22,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Kasutaja %s jagas Sinuga faili" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Kasutaja %s jagas Sinuga kataloogi." +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Kasutaja %s jagas Sinuga faili \"%s\". See on allalaadimiseks saadaval siin: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Kasutaja %s jagas Sinuga kataloogi \"%s\". See on allalaadimiseks saadaval siin: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Kategooria tüüp puudub." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Pole kategooriat, mida lisada?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "See kategooria juba eksisteerib: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Objekti tüüb puudub." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID puudub" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Viga %s lisamisel lemmikutesse." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Kustutamiseks pole kategooriat valitud." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Viga %s eemaldamisel lemmikutest" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Pühapäev" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Esmaspäev" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Teisipäev" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Kolmapäev" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Neljapäev" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Reede" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Laupäev" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Jaanuar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Veebruar" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Märts" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Aprill" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mai" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Juuni" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Juuli" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "August" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktoober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Detsember" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Seaded" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sekundit tagasi" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minut tagasi" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minutit tagasi" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 tund tagasi" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} tundi tagasi" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "täna" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "eile" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} päeva tagasi" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "viimasel kuul" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} kuud tagasi" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "kuu tagasi" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "viimasel aastal" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "aastat tagasi" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Loobu" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Vali" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Jah" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Ei" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Objekti tüüb pole määratletud" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -245,363 +243,363 @@ msgstr "Objekti tüüb pole määratletud" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Viga" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Rakenduse nimi ole määratletud" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Vajalikku faili {file} pole paigaldatud!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Jagatud" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Jaga" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Viga jagamisel" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Viga jagamise lõpetamisel" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Viga õiguste muutmisel" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Jagatud sinu ja {group} grupiga {owner} poolt" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Sinuga jagas {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Jaga" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Jaga lingiga" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Parooliga kaitstud" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Parool" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Saada link isikule emailiga" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Saada" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Määra aegumise kuupäev" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Aegumise kuupäev" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Jaga e-postiga:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Ühtegi inimest ei leitud" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Edasijagamine pole lubatud" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Jagatud {item} kasutajaga {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Lõpeta jagamine" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "saab muuta" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "ligipääsukontroll" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "loo" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "uuenda" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "kustuta" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "jaga" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Parooliga kaitstud" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Viga aegumise kuupäeva eemaldamisel" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Viga aegumise kuupäeva määramisel" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Saadan ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Email saadetud" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Uuendus ebaõnnestus. Palun teavita probleemidest ownCloud kogukonda." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud parooli taastamine" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Kasuta järgnevat linki oma parooli taastamiseks: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Sinu parooli taastamise link saadetakse sulle e-postile." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Taastamise e-kiri on saadetud." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Päring ebaõnnestus!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Kasutajanimi" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Päringu taastamine" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Sinu parool on taastatud" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Sisselogimise lehele" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Uus parool" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Nulli parool" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "isiklik" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Kasutajad" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Programmid" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Abiinfo" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Ligipääs on keelatud" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Pilve ei leitud" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Muuda kategooriaid" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Lisa" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Turvahoiatus" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Sinu PHP versioon on haavatav NULL Baidi (CVE-2006-7243) rünnakuga." +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Palun uuenda oma paigaldatud PHP-d tagamaks ownCloudi turvalisus." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Turvalist juhuslike numbrite generaatorit pole saadaval. Palun luba PHP-s OpenSSL laiendus." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Ilma turvalise juhuslike numbrite generaatorita võib ründaja ennustada paroolivahetuse võtme ning hõivata su konto." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Su andmete kataloog ja failid on tõenäoliselt internetist vabalt saadaval kuna .htaccess fail ei toimi." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Serveri korrektseks seadistuseks palun tutvu dokumentatsiooniga." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Loo admini konto" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Lisavalikud" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Andmete kaust" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Seadista andmebaasi" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "kasutatakse" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Andmebaasi kasutaja" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Andmebaasi parool" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Andmebasi nimi" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Andmebaasi tabeliruum" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Andmebaasi host" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Lõpeta seadistamine" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "veebiteenused sinu kontrolli all" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Logi välja" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automaatne sisselogimine lükati tagasi!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Kui sa ei muutnud oma parooli hiljut, siis võib su kasutajakonto olla ohustatud!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Kaotasid oma parooli?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "pea meeles" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Logi sisse" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternatiivsed meldimised" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "eelm" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "järgm" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Uuendan ownCloudi versioonile %s. Läheb pisut aega." +msgstr "" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index cd8c808f82..416c36bc47 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# dagor , 2012 -# pisike.sipelgas , 2013 -# Rivo Zängov , 2011-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -23,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s liigutamine ebaõnnestus" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Faili ümbernimetamine ebaõnnestus" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Ühtegi viga pole, fail on üles laetud" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Fail laeti üles ainult osaliselt" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Ühtegi faili ei laetud üles" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Ajutiste failide kaust puudub" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Kettale kirjutamine ebaõnnestus" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Saadaval pole piisavalt ruumi" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Vigane kaust." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Failid" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Jaga" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Kustuta jäädavalt" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Kustuta" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "ümber" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Ootel" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} on juba olemas" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "asenda" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "soovita nime" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "loobu" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "asendas nime {old_name} nimega {new_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "tagasi" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "teosta kustutamine" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 faili üleslaadimisel" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "failide üleslaadimine" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' on vigane failinimi." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Faili nimi ei saa olla tühi." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Sinu andmemaht on täis! Faile ei uuendata ja sünkroniseerimist ei toimu!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Su andmemaht on peaaegu täis ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega kui on tegu suurte failidega. " +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Pole piisavalt ruumi" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Üleslaadimine tühistati." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL ei saa olla tühi." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Vigane kataloogi nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Viga" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nimi" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Suurus" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Muudetud" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 kaust" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} kausta" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 fail" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} faili" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Lae üles" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Failide käsitlemine" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksimaalne üleslaadimise suurus" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maks. võimalik: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Vajalik mitme faili ja kausta allalaadimiste jaoks." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Luba ZIP-ina allalaadimine" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 tähendab piiramatut" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Salvesta" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Uus" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Tekstifail" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Kaust" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Allikast" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Kustutatud failid" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Tühista üleslaadimine" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Siin puudvad Sul kirjutamisõigused." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Siin pole midagi. Lae midagi üles!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Lae alla" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Lõpeta jagamine" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Üleslaadimine on liiga suur" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Faile skannitakse, palun oota" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Praegune skannimine" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Uuendan failisüsteemi puhvrit..." +msgstr "" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index 8487c07b9f..31f8a536fd 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rivo Zängov , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -20,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Krüpteerimine" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Faili krüpteerimine on sisse lülitatud." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Järgnevaid failitüüpe ei krüpteerita:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Järgnevaid failitüüpe ei krüpteerita:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Pole" +msgstr "" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 086a2c0daa..afc17c25f2 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -3,15 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# pisike.sipelgas , 2013 -# Rivo Zängov , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 11:11+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Ligipääs on antud" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Viga Dropboxi salvestusruumi seadistamisel" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Anna ligipääs" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Viga Google Drive'i salvestusruumi seadistamisel" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Hoiatus: \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Hoiatus: FTP tugi puudub PHP paigalduses. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Hoiatus: Curl tugi puudub PHP paigalduses. Jagatud ownCloud / WebDAV või GoogleDrive ühendamine pole võimalik. Palu oma süsteemihalduril see paigaldada." +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Väline salvestuskoht" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Kausta nimi" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Väline andmehoidla" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Seadistamine" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Valikud" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Rakendatav" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Lisa andmehoidla" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Pole määratud" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Kõik kasutajad" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupid" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Kasutajad" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Kustuta" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Luba kasutajatele väline salvestamine" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Luba kasutajatel ühendada külge nende enda välised salvestusseadmed" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL root sertifikaadid" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Impordi root sertifikaadid" +msgstr "" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 5f470a04c3..651879a37c 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rivo Zängov , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Parool" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Saada" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s jagas sinuga kausta %s" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s jagas sinuga faili %s" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Lae alla" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Eelvaadet pole saadaval" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "veebitenused sinu kontrolli all" +msgstr "" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 46f8a4c56d..8aae895650 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pisike Sipelgas , 2013. -# Rivo Zängov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "%s jäädavalt kustutamine ebaõnnestus" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "%s ei saa taastada" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "soorita taastamine" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Viga" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "kustuta fail jäädavalt" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Kustuta jäädavalt" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nimi" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Kustutatud" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 kaust" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} kausta" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 fail" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} faili" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Siin pole midagi. Sinu prügikast on tühi!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Taasta" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Kustuta" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Kustutatud failid" +msgstr "" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index de58702159..2084caeeb9 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pisike Sipelgas , 2013. -# Rivo Zängov , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Ei suuda taastada faili: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "korras" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Fail %s taastati versioonile %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "ebaõnnestus" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Faili %s ei saa taastada versioonile %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Vanu versioone pole saadaval" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Asukohta pole määratud" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versioonid" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Taasta fail varasemale versioonile klikkides \"Revert\" nupule" +msgstr "" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 19268960f2..50d5d39712 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# pisike.sipelgas , 2013 -# Rivo Zängov , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -21,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Abiinfo" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Isiklik" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Seaded" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Kasutajad" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Rakendused" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP-ina allalaadimine on välja lülitatud." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Failid tuleb alla laadida ükshaaval." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Tagasi failide juurde" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "Ei suuda tuvastada" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Rakendus pole sisse lülitatud" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Autentimise viga" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Kontrollkood aegus. Paelun lae leht uuesti." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Failid" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Tekst" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Pildid" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Määra admin kasutajanimi." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Määra admini parool." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s sisesta andmebaasi kasutajatunnus" +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s sisesta andmebaasi nimi." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s punktide kasutamine andmebaasi nimes pole lubatud" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s määra andmebaasi server." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL kasutajatunnus ja/või parool pole õiged" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Sisesta kas juba olemasolev konto või administrator." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle kasutajatunnus ja/või parool pole õiged" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL kasutajatunnus ja/või parool pole õiged" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Andmebaasi viga: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Tõrkuv käsk oli: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL kasutaja '%s'@'localhost' on juba olemas." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Kustuta see kasutaja MySQL-ist" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL kasutaja '%s'@'%%' on juba olemas" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Kustuta see kasutaja MySQL-ist." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL kasutajatunnus ja/või parool pole õiged: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Palun tutvu veelkord paigalduse juhenditega." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sekundit tagasi" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minut tagasi" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minutit tagasi" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 tund tagasi" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d tundi tagasi" +msgstr "" #: template.php:118 msgid "today" -msgstr "täna" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "eile" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d päeva tagasi" +msgstr "" #: template.php:121 msgid "last month" -msgstr "eelmisel kuul" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d kuud tagasi" +msgstr "" #: template.php:123 msgid "last year" -msgstr "eelmisel aastal" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "aastat tagasi" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s on saadaval. Vaata lisainfot" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "ajakohane" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "uuenduste kontrollimine on välja lülitatud" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Ei leia kategooriat \"%s\"" +msgstr "" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index c98a71c89c..332ada61e1 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Robin Appelman , 2012 -# pisike.sipelgas , 2013 -# Rivo Zängov , 2011-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -22,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "App Sotre'i nimekirja laadimine ebaõnnestus" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Autentimise viga" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -35,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Ei saa muuta kuvatavat nime" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Grupp on juba olemas" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Keela grupi lisamine" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Rakenduse sisselülitamine ebaõnnestus." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Kiri on salvestatud" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Vigane e-post" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Keela grupi kustutamine" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Keela kasutaja kustutamine" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Keel on muudetud" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Vigane päring" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administraatorid ei saa ise end eemaldada admin grupist" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Kasutajat ei saa lisada gruppi %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Kasutajat ei saa eemaldada grupist %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Rakenduse uuendamine ebaõnnestus." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Uuenda versioonile {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Lülita välja" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Lülita sisse" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Palun oota..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Viga" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Uuendamine..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Viga rakenduse uuendamisel" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Uuendatud" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Salvestamine..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "kustutatud" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "tagasi" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Ei suuda kustutada kasutajat" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupid" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupi admin" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Kustuta" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "lisa grupp" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Sisesta nõuetele vastav kasutajatunnus" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Viga kasutaja loomisel" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Sisesta nõuetele vastav parool" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Eesti" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Turvahoiatus" +msgstr "" #: templates/admin.php:18 msgid "" @@ -183,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, mida pakub ownCloud, ei toimi. Soovitame tungivalt veebiserveri seadistust selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi-juurkataloogist mujale." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Paigalduse hoiatus" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Palun tutvu veelkord paigalduse juhenditega." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Moodul 'fileinfo' puudub" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Lokalisatsioon ei toimi" +msgstr "" #: templates/admin.php:63 #, php-format @@ -220,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "ownCloud server ei suuda seadistada süsteemi lokalisatsiooni %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Internetiühendus ei toimi" +msgstr "" #: templates/admin.php:78 msgid "" @@ -234,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "ownCloud serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Käivita toiming lehe laadimisel" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php on registreeritud webcron teenusena. Lae cron.php lehte owncloud veebikataloogist iga minut üle http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Kasuta süsteemi cron teenust. Käivita cron.php fail owncloud veebikataloogist kasutades süsteemi crontab toimingut iga minut." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Jagamine" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Luba Share API" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Luba rakendustel kasutada Share API-t" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Luba lingid" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Luba edasijagamine" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Luba kasutajatel kõigiga jagada" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Turvalisus" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Sunni peale HTTPS-i kasutamine" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Sunnib kliente ownCloudiga ühenduma krüpteeritult." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Palun ühendu selle ownCloud instantsiga üle HTTPS või keela SSL kasutamine." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Logi" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Logi tase" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Rohkem" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Vähem" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versioon" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -339,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Arendatud ownCloud kogukonna poolt. Lähtekood on avaldatud ja kaetud AGPL litsentsiga." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Lisa oma rakendus" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Veel rakendusi" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Vali programm" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Vaata rakenduste lehte aadressil apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-litsenseeritud " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Uuenda" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Kasutaja dokumentatsioon" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Administraatori dokumentatsioon" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Online dokumentatsioon" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Foorum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Vigade nimekiri" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Tasuine kasutajatugi" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Kasutad %s saadavalolevast %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Hangi rakendusi failide sünkroniseerimiseks" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Näita veelkord Esmase Käivituse Juhendajat" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Parool" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Sinu parooli on muudetud" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Sa ei saa oma parooli muuta" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Praegune parool" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Uus parool" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Muuda parooli" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Näidatav nimi" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-post" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Sinu e-posti aadress" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Keel" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Aita tõlkida" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Kasuta seda aadressi ühendamaks oma ownCloudi failihalduriga" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Kasutajanimi" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Lisa" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Vaikimisi maht" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Piiramatult" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Muu" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Maht" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "muuda näidatavat nime" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "määra uus parool" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Vaikeväärtus" +msgstr "" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 9da3698683..2aeaf7e148 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pisike Sipelgas , 2013. -# Rivo Zängov , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -21,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Serveri seadistuse kustutamine ebaõnnestus" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Seadistus on korrektne ning ühendus on olemas!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Seadistus on korrektne, kuid ühendus ebaõnnestus. Palun kontrolli serveri seadeid ja ühenduseks kasutatavaid kasutajatunnuseid." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Seadistus on vigane. Palun vaata ownCloud logist täpsemalt." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Kustutamine ebaõnnestus" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Võta sätted viimasest serveri seadistusest?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Säilitada seadistus?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Ei suuda lisada serveri seadistust" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Test ühendus õnnestus" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Test ühendus ebaõnnestus" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Oled kindel, et tahad kustutada praegust serveri seadistust?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Kinnita kustutamine" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Hoiatus:PHP LDAP moodul pole paigaldatud ning LDAP kasutamine ei ole võimalik. Palu oma süsteeihaldurit see paigaldada." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Serveri seadistus" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Lisa serveri seadistus" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Host" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Sa ei saa protokolli ära jätta, välja arvatud siis, kui sa nõuad SSL-ühendust. Sel juhul alusta eesliitega ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Baas DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Üks baas-DN rea kohta" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Kasutaja DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "Klientkasutaja DN, kellega seotakse, nt. uid=agent,dc=näidis,dc=com. Anonüümseks ligipääsuks jäta DN ja parool tühjaks." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Parool" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Anonüümseks ligipääsuks jäta DN ja parool tühjaks." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Kasutajanime filter" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Määrab sisselogimisel kasutatava filtri. %%uid asendab sisselogimistegevuses kasutajanime." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "kasuta %%uid kohatäitjat, nt. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Kasutajate nimekirja filter" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Määrab kasutajaid hankides filtri, mida rakendatakse." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "ilma ühegi kohatäitjata, nt. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Grupi filter" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Määrab gruppe hankides filtri, mida rakendatakse." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "ilma ühegi kohatäitjata, nt. \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Ühenduse seaded" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Seadistus aktiivne" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Kui märkimata, siis seadistust ei kasutata" +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Varuserver" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Lisa täiendav LDAP/AD server, mida replikeeritakse peaserveriga." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Varuserveri (replika) ldap port" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Ära kasuta peaserverit" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Märgituna ownCloud ühendub ainult varuserverisse." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Kasutaja TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "LDAPS puhul ära kasuta. Ühendus ei toimi." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Mittetõstutundlik LDAP server (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Lülita SSL sertifikaadi kontrollimine välja." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma ownCloud serverisse." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Pole soovitatav, kasuta ainult testimiseks." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Puhvri iga" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "sekundites. Muudatus tühjendab vahemälu." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Kataloogi seaded" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Kasutaja näidatava nime väli" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP omadus, mida kasutatakse kasutaja ownCloudi nime loomiseks." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Baaskasutaja puu" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Üks kasutajate baas-DN rea kohta" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Kasutaja otsingu atribuudid" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Valikuline; üks atribuut rea kohta" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Grupi näidatava nime väli" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP omadus, mida kasutatakse ownCloudi grupi nime loomiseks." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Baasgrupi puu" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Üks grupi baas-DN rea kohta" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Grupi otsingu atribuudid" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Grupiliikme seotus" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Spetsiifilised atribuudid" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Mahupiirangu atribuut" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Vaikimisi mahupiirang" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "baitides" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Email atribuut" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Kasutaja kodukataloogi nimetamise reegel" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Kasutajanime (vaikeväärtus) kasutamiseks jäta tühjaks. Vastasel juhul määra LDAP/AD omadus." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Testi seadistust" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Abiinfo" +msgstr "" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 8ea3e02d5e..987d0e1fae 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# asieriko , 2013 -# asieriko , 2012 -# asieriko , 2011 -# Piarres Beobide , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -24,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "%s erabiltzaileak zurekin fitxategi bat elkarbanatu du " +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "%s erabiltzaileak zurekin karpeta bat elkarbanatu du " +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "%s erabiltzaileak \"%s\" fitxategia zurekin elkarbanatu du. Hemen duzu eskuragarri: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "%s erabiltzaileak \"%s\" karpeta zurekin elkarbanatu du. Hemen duzu eskuragarri: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Kategoria mota ez da zehaztu." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Ez dago gehitzeko kategoriarik?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Kategoria hau dagoeneko existitzen da: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Objetu mota ez da zehaztu." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID mota ez da zehaztu." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Errorea gertatu da %s gogokoetara gehitzean." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Ez da ezabatzeko kategoriarik hautatu." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Errorea gertatu da %s gogokoetatik ezabatzean." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Igandea" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Astelehena" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Asteartea" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Asteazkena" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Osteguna" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Ostirala" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Larunbata" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Urtarrila" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Otsaila" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Martxoa" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Apirila" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maiatza" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Ekaina" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Uztaila" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Abuztua" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Iraila" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Urria" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Azaroa" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Abendua" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Ezarpenak" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "segundu" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "orain dela minutu 1" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "orain dela {minutes} minutu" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "orain dela ordu bat" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "orain dela {hours} ordu" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "gaur" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "atzo" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "orain dela {days} egun" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "joan den hilabetean" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "orain dela {months} hilabete" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "hilabete" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "joan den urtean" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "urte" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ados" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Ezeztatu" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Aukeratu" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Bai" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Ez" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Objetu mota ez dago zehaztuta." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -247,363 +243,363 @@ msgstr "Objetu mota ez dago zehaztuta." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Errorea" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "App izena ez dago zehaztuta." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Beharrezkoa den {file} fitxategia ez dago instalatuta!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Elkarbanatuta" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Elkarbanatu" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Errore bat egon da elkarbanatzean" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Errore bat egon da elkarbanaketa desegitean" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Errore bat egon da baimenak aldatzean" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "{owner}-k zu eta {group} taldearekin elkarbanatuta" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner}-k zurekin elkarbanatuta" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Elkarbanatu honekin" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Elkarbanatu lotura batekin" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Babestu pasahitzarekin" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Pasahitza" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Postaz bidali lotura " +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Bidali" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Ezarri muga data" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Muga data" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Elkarbanatu eposta bidez:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Ez da inor aurkitu" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Berriz elkarbanatzea ez dago baimendua" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "{user}ekin {item}-n elkarbanatuta" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Ez elkarbanatu" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "editatu dezake" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "sarrera kontrola" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "sortu" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "eguneratu" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "ezabatu" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "elkarbanatu" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Pasahitzarekin babestuta" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Errorea izan da muga data kentzean" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Errore bat egon da muga data ezartzean" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Bidaltzen ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Eposta bidalia" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat ownCloud komunitatearentzako." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud-en pasahitza berrezarri" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Berrezartzeko eposta bidali da." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Eskariak huts egin du!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Erabiltzaile izena" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Eskaera berrezarri da" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Zure pasahitza berrezarri da" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Sarrera orrira" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Pasahitz berria" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Berrezarri pasahitza" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Pertsonala" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Erabiltzaileak" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplikazioak" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Kudeatzailea" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Laguntza" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Sarrera debekatuta" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Ez da hodeia aurkitu" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Editatu kategoriak" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Gehitu" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Segurtasun abisua" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Zure PHP bertsioa NULL Byte erasoak (CVE-2006-7243) mendera dezake." +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Mesedez eguneratu zure PHP instalazioa ownCloud modu seguru batean erabiltzeko." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Ez dago hausazko zenbaki sortzaile segururik eskuragarri, mesedez gatiu PHP OpenSSL extensioa." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Hausazko zenbaki sortzaile segururik gabe erasotzaile batek pasahitza berrezartzeko kodeak iragarri ditzake eta zure kontuaz jabetu." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Zure data karpeta eta fitxategiak interneten bidez eskuragarri egon daitezke .htaccess fitxategia ez delako funtzionatzen ari." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Zure zerbitzaria ongi konfiguratzeko informazioa eskuratzeko, begiratu dokumentazioa." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Sortu kudeatzaile kontu bat" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Aurreratua" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Datuen karpeta" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Konfiguratu datu basea" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "erabiliko da" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Datubasearen erabiltzailea" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Datubasearen pasahitza" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Datubasearen izena" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Datu basearen taula-lekua" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Datubasearen hostalaria" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Bukatu konfigurazioa" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "web zerbitzuak zure kontrolpean" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Saioa bukatu" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Saio hasiera automatikoa ez onartuta!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan egon daiteke!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Galdu duzu pasahitza?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "gogoratu" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Hasi saioa" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Beste erabiltzaile izenak" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "aurrekoa" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "hurrengoa" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "ownCloud %s bertsiora eguneratzen, denbora har dezake." +msgstr "" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 58e54734cc..0671ef5fbe 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# asieriko , 2013 -# asieriko , 2012 -# asieriko , 2011 -# Piarres Beobide , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -24,115 +20,115 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Ezin dira fitxategiak mugitu %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Ezin izan da fitxategia berrizendatu" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Ez da fitxategirik igo. Errore ezezaguna" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Ez da arazorik izan, fitxategia ongi igo da" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Ez da fitxategirik igo" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Aldi baterako karpeta falta da" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Errore bat izan da diskoan idazterakoan" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Ez dago behar aina leku erabilgarri," +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Baliogabeko karpeta." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Fitxategiak" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Elkarbanatu" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Ezabatu betirako" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Ezabatu" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Berrizendatu" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Zain" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} dagoeneko existitzen da" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "ordeztu" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "aholkatu izena" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "ezeztatu" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr " {new_name}-k {old_name} ordezkatu du" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "desegin" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "Ezabatu" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "fitxategi 1 igotzen" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -140,183 +136,183 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' ez da fitxategi izen baliogarria." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Fitxategi izena ezin da hutsa izan." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik igo edo sinkronizatu!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Ez dago leku nahikorik." +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Igoera ezeztatuta" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URLa ezin da hutsik egon." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Errorea" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Izena" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Tamaina" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Aldatuta" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "karpeta bat" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} karpeta" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "fitxategi bat" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} fitxategi" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Igo" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Fitxategien kudeaketa" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Igo daitekeen gehienezko tamaina" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max, posiblea:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Beharrezkoa fitxategi-anitz eta karpeten deskargarako." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Gaitu ZIP-deskarga" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 mugarik gabe esan nahi du" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP fitxategien gehienezko tamaina" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Gorde" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Berria" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Testu fitxategia" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Karpeta" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Estekatik" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Ezabatutako fitxategiak" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Ezeztatu igoera" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Ez duzu hemen idazteko baimenik." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Ez dago ezer. Igo zerbait!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Deskargatu" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Ez elkarbanatu" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Igotakoa handiegia da" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Orain eskaneatzen ari da" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Fitxategi sistemaren katxea eguneratzen..." +msgstr "" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index eea7795bbc..72ad5d6238 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Enkriptazioa" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Fitxategien enkriptazioa gaituta dago." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Hurrengo fitxategi motak ez dira enkriptatuko:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Baztertu hurrengo fitxategi motak enkriptatzetik:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Bat ere ez" +msgstr "" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 95185aed55..1bd4d74ef8 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# asieriko , 2013 -# asieriko , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -21,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Sarrera baimendua" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Errore bat egon da Dropbox biltegiratzea konfiguratzean" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Baimendu sarrera" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." +msgstr "" #: lib/config.php:437 msgid "" @@ -61,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Kanpoko Biltegiratzea" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Karpetaren izena" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Kanpoko biltegiratzea" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Konfigurazioa" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Aukerak" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Aplikagarria" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Gehitu biltegiratzea" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Ezarri gabe" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Erabiltzaile guztiak" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Taldeak" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Erabiltzaileak" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Ezabatu" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Gaitu erabiltzaileentzako Kanpo Biltegiratzea" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Baimendu erabiltzaileak bere kanpo biltegiratzeak muntatzen" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL erro ziurtagiriak" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Inportatu Erro Ziurtagiria" +msgstr "" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 89c6272ac7..7da2cbe6d8 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Pasahitza" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Bidali" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%sk zurekin %s karpeta elkarbanatu du" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%sk zurekin %s fitxategia elkarbanatu du" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Deskargatu" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Ez dago aurrebista eskuragarririk hauentzat " +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "web zerbitzuak zure kontrolpean" +msgstr "" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 0aea8466bd..e10d7881d7 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Ezin izan da %s betirako ezabatu" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Ezin izan da %s berreskuratu" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "berreskuratu" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Errorea" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "ezabatu fitxategia betirako" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Ezabatu betirako" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Izena" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Ezabatuta" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "karpeta bat" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} karpeta" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "fitxategi bat" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} fitxategi" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Ez dago ezer ez. Zure zakarrontzia hutsik dago!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Berrezarri" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Ezabatu" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Ezabatutako Fitxategiak" +msgstr "" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 7fdbf14c0d..2e5a8e0d66 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Ezin izan da leheneratu: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "arrakasta" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "%s fitxategia %s bertsiora leheneratu da" +msgstr "" #: history.php:49 msgid "failure" -msgstr "errorea" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "%s fitxategia ezin da %s bertsiora leheneratu" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Ez dago bertsio zaharrik eskuragarri" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Ez da bidea zehaztu" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Bertsioak" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Itzuli fitxategi bat aurreko bertsio batera leheneratu bere leheneratu botoia sakatuz" +msgstr "" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 912f19f241..2620e87c8e 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# asieriko , 2013 -# asieriko , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -21,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Laguntza" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Pertsonala" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Ezarpenak" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Erabiltzaileak" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplikazioak" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP deskarga ez dago gaituta." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Fitxategiak banan-banan deskargatu behar dira." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Itzuli fitxategietara" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "ezin izan da zehaztu" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Aplikazioa ez dago gaituta" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Autentikazio errorea" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Tokena iraungitu da. Mesedez birkargatu orria." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Fitxategiak" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Testua" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Irudiak" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Ezarri administraziorako erabiltzaile izena." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Ezarri administraziorako pasahitza." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s sartu datu basearen erabiltzaile izena." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s sartu datu basearen izena." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s ezin duzu punturik erabili datu basearen izenean." +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s sartu datu basearen hostalaria." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL erabiltzaile edota pasahitza ez dira egokiak." +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Existitzen den kontu bat edo administradorearena jarri behar duzu." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle erabiltzaile edota pasahitza ez dira egokiak." +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL erabiltzaile edota pasahitza ez dira egokiak." - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "DB errorea: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Errorea komando honek sortu du: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL '%s'@'localhost' erabiltzailea dagoeneko existitzen da." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Ezabatu erabiltzaile hau MySQLtik" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL '%s'@'%%' erabiltzailea dagoeneko existitzen da" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Ezabatu erabiltzaile hau MySQLtik." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL erabiltzaile izena edota pasahitza ez dira egokiak: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Mesedez begiratu instalazio gidak." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "orain dela segundu batzuk" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "orain dela minutu 1" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "orain dela %d minutu" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "orain dela ordu bat" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "orain dela %d ordu" +msgstr "" #: template.php:118 msgid "today" -msgstr "gaur" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "atzo" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "orain dela %d egun" +msgstr "" #: template.php:121 msgid "last month" -msgstr "joan den hilabetea" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "orain dela %d hilabete" +msgstr "" #: template.php:123 msgid "last year" -msgstr "joan den urtea" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "orain dela urte batzuk" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s eskuragarri dago. Lortu informazio gehiago" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "eguneratuta" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "eguneraketen egiaztapena ez dago gaituta" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Ezin da \"%s\" kategoria aurkitu" +msgstr "" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index b2e58a5580..1881b21156 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# asieriko , 2013 -# asieriko , 2012 -# asieriko , 2011 -# Piarres Beobide , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -23,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Ezin izan da App Dendatik zerrenda kargatu" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Autentifikazio errorea" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -36,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Ezin izan da bistaratze izena aldatu" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Taldea dagoeneko existitzenda" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Ezin izan da taldea gehitu" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Ezin izan da aplikazioa gaitu." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Eposta gorde da" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Baliogabeko eposta" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Ezin izan da taldea ezabatu" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Ezin izan da erabiltzailea ezabatu" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Hizkuntza aldatuta" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Baliogabeko eskaria" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Kudeatzaileak ezin du bere burua kendu kudeatzaile taldetik" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Ezin izan da erabiltzailea %s taldera gehitu" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Ezin izan da erabiltzailea %s taldetik ezabatu" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Ezin izan da aplikazioa eguneratu." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Eguneratu {appversion}-ra" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Ez-gaitu" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Gaitu" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Itxoin mesedez..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Errorea" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Eguneratzen..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Errorea aplikazioa eguneratzen zen bitartean" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Eguneratuta" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Gordetzen..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "ezabatuta" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "desegin" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Ezin izan da erabiltzailea aldatu" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Taldeak" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Talde administradorea" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Ezabatu" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "gehitu taldea" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Baliozko erabiltzaile izena eman behar da" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Errore bat egon da erabiltzailea sortzean" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Baliozko pasahitza eman behar da" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Euskera" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Segurtasun abisua" +msgstr "" #: templates/admin.php:18 msgid "" @@ -184,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Konfiguratu Abisuak" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Mesedez begiratu instalazio gidak." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "'fileinfo' Modulua falta da" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Lokala ez dabil" +msgstr "" #: templates/admin.php:63 #, php-format @@ -221,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "OwnClud zerbitzari honek ezin du sistemaren lokala %s-ra ezarri. Honek fitxategien izenetan karaktere batzuekin arazoak egon daitekeela esan nahi du. Aholkatzen dizugu zure sistema %s lokalea onartzeko beharrezkoak diren paketeak instalatzea." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Interneteko konexioak ez du funtzionatzen" +msgstr "" #: templates/admin.php:78 msgid "" @@ -235,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "ownCloud zerbitzari honen interneteko konexioa ez dabil. Honek esan nahi du kanpoko biltegiratze zerbitzuak, eguneraketen informazioa edo bestelako aplikazioen instalazioa bezalako programek ez dutela funtzionatuko. Urrunetik fitxategiak eskuratzea eta e-postak bidaltzea ere ezinezkoa izan daiteke. onwCloud-en aukera guztiak erabili ahal izateko zerbitzari honetan interneteko konexioa gaitzea aholkatzen dizugu." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Exekutatu zeregin bat orri karga bakoitzean" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Partekatzea" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Gaitu Elkarbanatze APIa" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Baimendu loturak" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Baimendu birpartekatzea" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Baimendu erabiltzaileak edonorekin elkarbanatzen" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Segurtasuna" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Behartu HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Bezeroak konexio enkriptatu baten bidez ownCloud-era konektatzera behartzen du." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Mesedez konektatu ownCloud honetara HTTPS bidez SSL-ren beharra gaitu edo ezgaitzeko" +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Egunkaria" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Erregistro maila" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Gehiago" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Gutxiago" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Bertsioa" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -340,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "ownCloud komunitateak garatuta, itubruru kodeaAGPL lizentziarekin banatzen da." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Gehitu zure aplikazioa" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "App gehiago" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Aukeratu programa bat" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Ikusi programen orria apps.owncloud.com en" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-lizentziatua " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Eguneratu" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Erabiltzaile dokumentazioa" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Administradore dokumentazioa" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Online dokumentazioa" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Foroa" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Babes komertziala" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %setatik" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Lortu aplikazioak zure fitxategiak sinkronizatzeko" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Erakutsi berriz Lehenengo Aldiko Morroia" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Pasahitza" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Zere pasahitza aldatu da" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Ezin izan da zure pasahitza aldatu" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Uneko pasahitza" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Pasahitz berria" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Aldatu pasahitza" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Bistaratze Izena" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-Posta" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Zure e-posta" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Hizkuntza" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Lagundu itzultzen" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Sarrera Izena" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Sortu" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Lehenetsitako Biltegiratzea" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Mugarik gabe" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Besteak" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Biltegiratzea" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "aldatu bistaratze izena" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "ezarri pasahitz berria" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Lehenetsia" +msgstr "" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 5dbd26541b..2f18a74e95 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -21,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Zerbitzariaren konfigurazioa ezabatzeak huts egin du" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Konfigurazioa egokia da eta konexioa ezarri daiteke!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Konfigurazioa ongi dago, baina Bind-ek huts egin du. Mesedez egiaztatu zerbitzariaren ezarpenak eta kredentzialak." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Konfigurazioa ez dago ongi. Mesedez ikusi ownCloud-en egunerokoa informazio gehiago eskuratzeko." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Ezabaketak huts egin du" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "oraintsuko zerbitzariaren konfigurazioaren ezarpenen ardura hartu?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Mantendu ezarpenak?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Ezin da zerbitzariaren konfigurazioa gehitu" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Konexio froga ongi burutu da" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Konexio frogak huts egin du" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Ziur zaude Zerbitzariaren Konfigurazioa ezabatu nahi duzula?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Baieztatu Ezabatzea" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Zerbitzariaren konfigurazioa" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Gehitu Zerbitzariaren Konfigurazioa" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Hostalaria" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Oinarrizko DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "DN Oinarri bat lerroko" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu fitxan" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Erabiltzaile DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "Lotura egingo den bezero erabiltzailearen DNa, adb. uid=agent,dc=example,dc=com. Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Pasahitza" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Erabiltzaileen saioa hasteko iragazkia" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Saioa hastean erabiliko den iragazkia zehazten du. %%uid-ek erabiltzaile izena ordezkatzen du saioa hasterakoan." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "erabili %%uid txantiloia, adb. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Erabiltzaile zerrendaren Iragazkia" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Erabiltzaileak jasotzen direnean ezarriko den iragazkia zehazten du." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "txantiloirik gabe, adb. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Taldeen iragazkia" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Taldeak jasotzen direnean ezarriko den iragazkia zehazten du." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "txantiloirik gabe, adb. \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Konexio Ezarpenak" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Konfigurazio Aktiboa" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Markatuta ez dagoenean, konfigurazio hau ez da kontutan hartuko." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Portua" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Babeskopia (Replica) Ostalaria" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Eman babeskopia ostalari gehigarri bat. LDAP/AD zerbitzari nagusiaren replica bat izan behar da." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Babeskopia (Replica) Ataka" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Desgaitu Zerbitzari Nagusia" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Markatuta dagoenean, ownCloud bakarrik replica zerbitzarira konektatuko da." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Erabili TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Ez erabili LDAPS konexioetarako, huts egingo du." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Maiuskulak eta minuskulak ezberditzen ez dituen LDAP zerbitzaria (windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Ezgaitu SSL ziurtagirien egiaztapena." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Konexioa aukera hau ezinbestekoa badu, inportatu LDAP zerbitzariaren SSL ziurtagiria zure ownCloud zerbitzarian." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Ez da aholkatzen, erabili bakarrik frogak egiteko." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Katxearen Bizi-Iraupena" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "segundutan. Aldaketak katxea husten du." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Karpetaren Ezarpenak" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Erabiltzaileen bistaratzeko izena duen eremua" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "ownCloud erabiltzailearen izena sortzeko erabiliko den LDAP atributua" +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Oinarrizko Erabiltzaile Zuhaitza" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Erabiltzaile DN Oinarri bat lerroko" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Erabili Bilaketa Atributuak " +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Aukerakoa; atributu bat lerro bakoitzeko" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Taldeen bistaratzeko izena duen eremua" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "ownCloud taldearen izena sortzeko erabiliko den LDAP atributua" +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Oinarrizko Talde Zuhaitza" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Talde DN Oinarri bat lerroko" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Taldekatu Bilaketa Atributuak " +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Talde-Kide elkarketak" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Atributu Bereziak" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Kuota Eremua" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Kuota Lehenetsia" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "bytetan" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Eposta eremua" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Erabiltzailearen Karpeta Nagusia Izendatzeko Patroia" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Utzi hutsik erabiltzaile izenarako (lehentsia). Bestela zehaztu LDAP/AD atributua." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Egiaztatu Konfigurazioa" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Laguntza" +msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index c1accd9610..7c3a25c2b4 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hossein nag , 2012 -# miki_mika1362 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -22,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "کاربر %s یک پرونده را با شما به اشتراک گذاشته است." +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "کاربر %s یک پوشه را با شما به اشتراک گذاشته است." +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "کاربر %s پرونده \"%s\" را با شما به اشتراک گذاشته است. پرونده برای دانلود اینجاست : %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "کاربر %s پوشه \"%s\" را با شما به اشتراک گذاشته است. پرونده برای دانلود اینجاست : %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "نوع دسته بندی ارائه نشده است." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "آیا گروه دیگری برای افزودن ندارید" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "این دسته هم اکنون وجود دارد: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "نوع شی ارائه نشده است." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "شناسه %s ارائه نشده است." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "خطای اضافه کردن %s به علاقه مندی ها." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "هیج دسته ای برای پاک شدن انتخاب نشده است" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "خطای پاک کردن %s از علاقه مندی ها." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "یکشنبه" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "دوشنبه" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "سه شنبه" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "چهارشنبه" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "پنجشنبه" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "جمعه" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "شنبه" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "ژانویه" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "فبریه" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "مارس" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "آوریل" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "می" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "ژوئن" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "جولای" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "آگوست" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "سپتامبر" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "اکتبر" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "نوامبر" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "دسامبر" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "تنظیمات" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "ثانیه‌ها پیش" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 دقیقه پیش" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{دقیقه ها} دقیقه های پیش" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 ساعت پیش" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{ساعت ها} ساعت ها پیش" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "امروز" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "دیروز" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{روزها} روزهای پیش" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "ماه قبل" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{ماه ها} ماه ها پیش" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "ماه‌های قبل" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "سال قبل" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "سال‌های قبل" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "قبول" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "منصرف شدن" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "انتخاب کردن" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "بله" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "نه" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "نوع شی تعیین نشده است." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -245,363 +243,363 @@ msgstr "نوع شی تعیین نشده است." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "خطا" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "نام برنامه تعیین نشده است." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "پرونده { پرونده} درخواست شده نصب نشده است !" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "اشتراک گذاشته شده" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "اشتراک‌گزاری" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "خطا درحال به اشتراک گذاشتن" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "خطا درحال لغو اشتراک" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "خطا در حال تغییر مجوز" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "به اشتراک گذاشته شده با شما و گروه {گروه} توسط {دارنده}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "به اشتراک گذاشته شده با شما توسط { دارنده}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "به اشتراک گذاشتن با" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "به اشتراک گذاشتن با پیوند" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "نگهداری کردن رمز عبور" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "گذرواژه" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "پیوند ایمیل برای شخص." +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "ارسال" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "تنظیم تاریخ انقضا" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "تاریخ انقضا" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "از طریق ایمیل به اشتراک بگذارید :" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "کسی یافت نشد" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "اشتراک گذاری مجدد مجاز نمی باشد" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "لغو اشتراک" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "می توان ویرایش کرد" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "کنترل دسترسی" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "ایجاد" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "به روز" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "پاک کردن" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "به اشتراک گذاشتن" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "نگهداری از رمز عبور" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "خطا در تنظیم نکردن تاریخ انقضا " +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "خطا در تنظیم تاریخ انقضا" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "درحال ارسال ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "ایمیل ارسال شد" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "به روز رسانی ناموفق بود. لطفا این خطا را به جامعه ی OwnCloud گزارش نمایید." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "پسورد ابرهای شما تغییرکرد" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "شما یک نامه الکترونیکی حاوی یک لینک جهت بازسازی گذرواژه دریافت خواهید کرد." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "تنظیم مجدد ایمیل را بفرستید." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "درخواست رد شده است !" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "شناسه" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "درخواست دوباره سازی" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "گذرواژه شما تغییرکرد" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "به صفحه ورود" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "گذرواژه جدید" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "دوباره سازی گذرواژه" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "شخصی" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "کاربر ها" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "برنامه" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "مدیر" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "کمک" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "اجازه دسترسی به مناطق ممنوعه را ندارید" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "پیدا نشد" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "ویرایش گروه ها" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "افزودن" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "اخطار امنیتی" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "نسخه ی PHP شما در برابر حملات NULL Byte آسیب پذیر است.(CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "لطفا برنامه ی PHP خودتان را بروز کنید تا بتوانید ایمن تر از ownCloud استفاده کنید." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "هیچ مولد تصادفی امن در دسترس نیست، لطفا فرمت PHP OpenSSL را فعال نمایید." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "بدون وجود یک تولید کننده اعداد تصادفی امن ، یک مهاجم ممکن است این قابلیت را داشته باشد که پیشگویی کند پسوورد های راه انداز گرفته شده و کنترلی روی حساب کاربری شما داشته باشد ." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "برای مطلع شدن از چگونگی تنظیم سرورتان،لطفا این را ببینید." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "لطفا یک شناسه برای مدیر بسازید" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "حرفه ای" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "پوشه اطلاعاتی" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "پایگاه داده برنامه ریزی شدند" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "استفاده خواهد شد" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "شناسه پایگاه داده" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "پسورد پایگاه داده" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "نام پایگاه داده" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "جدول پایگاه داده" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "هاست پایگاه داده" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "اتمام نصب" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "سرویس وب تحت کنترل شما" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "خروج" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "ورود به سیستم اتوماتیک ردشد!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "اگر شما اخیرا رمزعبور را تغییر نداده اید، حساب شما در معرض خطر می باشد !" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "لطفا رمز عبور خود را تغییر دهید تا مجددا حساب شما در امان باشد." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "بیاد آوری" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "ورود" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "ورود متناوب" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "بازگشت" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "بعدی" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "به روز رسانی OwnCloud به نسخه ی %s، این عملیات ممکن است زمان بر باشد." +msgstr "" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 508aaf61e8..005d8819ba 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hossein nag , 2012 -# miki_mika1362 , 2013 -# Mohammad Dashtizadeh , 2012 -# vahid chakoshy , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -24,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. " +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s نمی تواند حرکت کند " +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "قادر به تغییر نام پرونده نیست." +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "مقدار کمی از فایل بارگذاری شده" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "هیچ فایلی بارگذاری نشده" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "یک پوشه موقت گم شده است" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "نوشتن بر روی دیسک سخت ناموفق بود" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "فضای کافی در دسترس نیست" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "فهرست راهنما نامعتبر می باشد." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "فایل ها" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "اشتراک‌گذاری" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "حذف قطعی" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "پاک کردن" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "تغییرنام" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "در انتظار" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{نام _جدید} در حال حاضر وجود دارد." +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "جایگزین" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "پیشنهاد نام" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "لغو" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "بازگشت" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "انجام عمل حذف" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 پرونده آپلود شد." +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "بارگذاری فایل ها" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' یک نام پرونده نامعتبر است." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "نام پرونده نمی تواند خالی باشد." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "فضای کافی در دسترس نیست" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "بار گذاری لغو شد" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL نمی تواند خالی باشد." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "نام پوشه نامعتبر است. استفاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "خطا" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "نام" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "اندازه" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "تغییر یافته" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 پوشه" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{ شمار} پوشه ها" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 پرونده" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{ شمار } فایل ها" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "بارگذاری" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "اداره پرونده ها" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "حداکثر اندازه بارگزاری" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "حداکثرمقدارممکن:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "احتیاج پیدا خواهد شد برای چند پوشه و پرونده" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "فعال سازی بارگیری پرونده های فشرده" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 نامحدود است" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "حداکثرمقدار برای بار گزاری پرونده های فشرده" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "ذخیره" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "جدید" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "فایل متنی" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "پوشه" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "از پیوند" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "فایل های حذف شده" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "متوقف کردن بار گذاری" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "شما اجازه ی نوشتن در اینجا را ندارید" +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "اینجا هیچ چیز نیست." +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "بارگیری" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "لغو اشتراک" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "حجم بارگذاری بسیار زیاد است" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "بازرسی کنونی" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "بهبود فایل سیستمی ذخیره گاه..." +msgstr "" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index a4b3d25d08..a42f8e9dea 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# mahdi Kereshteh , 2013. -# Mohammad Dashtizadeh , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -22,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "رمزگذاری" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "رمزنگاری فایلها فعال شد." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "فایلهای زیر رمزنگاری نخواهند شد:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "فایلهای زیر از رمزنگاری نادیده گرفته می شوند:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "هیچ‌کدام" +msgstr "" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 7940fbf20a..a5c3858524 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# miki_mika1362 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -60,7 +59,7 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "حافظه خارجی" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" @@ -72,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "پیکربندی" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "تنظیمات" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "قابل اجرا" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -88,32 +87,32 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "تنظیم نشده" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "تمام کاربران" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "گروه ها" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "کاربران" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "حذف" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "فعال سازی حافظه خارجی کاربر" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "اجازه به کاربران برای متصل کردن منابع ذخیره ی خارجی خودشان" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index c481470728..db2a78dcc6 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Amir Reza Asadi , 2013. -# Mohammad Dashtizadeh , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "گذرواژه" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "ثبت" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%sپوشه %s را با شما به اشتراک گذاشت" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%sفایل %s را با شما به اشتراک گذاشت" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "دانلود" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "هیچگونه پیش نمایشی موجود نیست" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "سرویس های تحت وب در کنترل شما" +msgstr "" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 56b1199bd6..8d2a73c1f5 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mahdi Kereshteh , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "%s را نمی توان برای همیشه حذف کرد" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "%s را نمی توان بازگرداند" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "انجام عمل بازگرداندن" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "خطا" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "حذف فایل برای همیشه" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "حذف قطعی" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "نام" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "حذف شده" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 پوشه" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{ شمار} پوشه ها" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 پرونده" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{ شمار } فایل ها" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است." +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "بازیابی" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "حذف" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "فایلهای حذف شده" +msgstr "" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 2e38afda4e..008dcf76a7 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Amir Reza Asadi , 2013. -# mahdi Kereshteh , 2013. -# Mohammad Dashtizadeh , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -23,11 +20,11 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "بازگردانی امکان ناپذیر است: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "موفقیت" +msgstr "" #: history.php:42 #, php-format @@ -36,7 +33,7 @@ msgstr "" #: history.php:49 msgid "failure" -msgstr "شکست" +msgstr "" #: history.php:51 #, php-format @@ -45,11 +42,11 @@ msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "هیچ نسخه قدیمی در دسترس نیست" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "هیچ مسیری مشخص نشده است" +msgstr "" #: js/versions.js:6 msgid "Versions" @@ -57,4 +54,4 @@ msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "بازگردانی یک پرورنده به نسخه قدیمی اش از طریق دکمه بازگردانی امکان پذیر است" +msgstr "" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index db4d2de1ce..b12c51d6fd 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Amir Reza Asadi , 2013 -# miki_mika1362 , 2013 -# Mohammad Dashtizadeh , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -22,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "راه‌نما" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "شخصی" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "تنظیمات" +msgstr "" #: app.php:385 msgid "Users" -msgstr "کاربران" +msgstr "" #: app.php:398 msgid "Apps" -msgstr " برنامه ها" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "مدیر" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "دانلود به صورت فشرده غیر فعال است" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "بازگشت به فایل ها" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد" +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -66,11 +63,11 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "برنامه فعال نشده است" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "خطا در اعتبار سنجی" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." @@ -78,15 +75,15 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "پرونده‌ها" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "متن" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "تصاویر" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -116,127 +113,127 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "ثانیه‌ها پیش" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 دقیقه پیش" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d دقیقه پیش" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 ساعت پیش" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d ساعت پیش" +msgstr "" #: template.php:118 msgid "today" -msgstr "امروز" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "دیروز" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d روز پیش" +msgstr "" #: template.php:121 msgid "last month" -msgstr "ماه قبل" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%dماه پیش" +msgstr "" #: template.php:123 msgid "last year" -msgstr "سال قبل" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "سال‌های قبل" +msgstr "" #: updater.php:78 #, php-format @@ -254,4 +251,4 @@ msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "دسته بندی %s یافت نشد" +msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 47225882dc..453484a695 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Amir Reza Asadi , 2013 -# basir , 2012 -# Hossein nag , 2012 -# miki_mika1362 , 2013 -# ho2o2oo , 2012 -# vahid chakoshy , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -25,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "قادر به بارگذاری لیست از فروشگاه اپ نیستم" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "خطا در اعتبار سنجی" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -38,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "امکان تغییر نام نمایشی شما وجود ندارد" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "این گروه در حال حاضر موجود است" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "افزودن گروه امکان پذیر نیست" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "برنامه را نمی توان فعال ساخت." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "ایمیل ذخیره شد" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "ایمیل غیر قابل قبول" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "حذف گروه امکان پذیر نیست" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "حذف کاربر امکان پذیر نیست" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "زبان تغییر کرد" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "درخواست غیر قابل قبول" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "مدیران نمی توانند خود را از گروه مدیریت حذف کنند" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "امکان افزودن کاربر به گروه %s نیست" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "امکان حذف کاربر از گروه %s نیست" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "برنامه را نمی توان به هنگام ساخت." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "بهنگام شده به {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "غیرفعال" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "فعال" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "لطفا صبر کنید ..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "خطا" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "در حال بروز رسانی..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "خطا در هنگام بهنگام سازی برنامه" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "بروز رسانی انجام شد" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "درحال ذخیره ..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "حذف شده" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "بازگشت" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "حذف کاربر امکان پذیر نیست" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "گروه ها" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "گروه مدیران" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "پاک کردن" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "افزودن گروه" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "نام کاربری صحیح باید وارد شود" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "خطا در ایجاد کاربر" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "رمز عبور صحیح باید وارد شود" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "اخطار امنیتی" +msgstr "" #: templates/admin.php:18 msgid "" @@ -186,32 +180,32 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "احتمالاً فهرست و فایلهای شما از طریق اینترنت قابل دسترسی هستند. فایل با فرمت .htaccess که ownCloud اراده کرده است دیگر کار نمی کند. ما قویاً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که فهرست اطلاعات شما غیر قابل دسترسی باشند یا فهرست اطلاعات را به خارج از ریشه ی اصلی وب سرور انتقال دهید." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "هشدار راه اندازی" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "ماژول 'fileinfo' از کار افتاده" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" @@ -223,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "این سرور ownCloud نمی تواند سیستم محلی را بر روی %s تنظیم کند.این به این معنی ست که ممکن است با کاراکترهای خاصی در نام فایل ها مشکل داشته باشد.ما اکیداً نصب کردن بسته های لازم را بر روی سیستم خودتان برای پشتیبانی %s توصیه می کنیم." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "اتصال اینترنت کار نمی کند" +msgstr "" #: templates/admin.php:78 msgid "" @@ -237,7 +231,7 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "این سرور OwnCloud ارتباط اینترنتی ندارد.این بدین معناست که بعضی از خصوصیات نظیر خارج کردن منبع ذخیره ی خارجی، اطلاعات در مورد بروزرسانی ها یا نصب برنامه های نوع 3ام کار نمی کنند.دسترسی به فایل ها از راه دور و ارسال آگاه سازی ایمیل ها ممکن است همچنان کار نکنند.اگرشما همه ی خصوصیات OwnCloud می خواهید ما پیشنهاد می کنیم تا ارتباط اینترنتی مربوط به این سرور را فعال کنید." +msgstr "" #: templates/admin.php:92 msgid "Cron" @@ -245,7 +239,7 @@ msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" +msgstr "" #: templates/admin.php:111 msgid "" @@ -261,52 +255,52 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "اشتراک گذاری" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "فعال کردن API اشتراک گذاری" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "اجازه ی لینک ها" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "مجوز اشتراک گذاری مجدد" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "اجازه به کابران برای اشتراک گذاری با همه" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "امنیت" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "وادار کردن HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "وادار کردن مشتریان برای ارتباط با ownCloud از طریق رمزگذاری ارتباط" +msgstr "" #: templates/admin.php:185 msgid "" @@ -324,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "بیش‌تر" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "کم‌تر" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "نسخه" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -342,116 +336,116 @@ msgid "" "licensed under the AGPL." -msgstr "توسعه یافته به وسیله ی انجمن ownCloud, the کد اصلی مجاز زیر گواهی AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "برنامه خود را بیافزایید" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "برنامه های بیشتر" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "یک برنامه انتخاب کنید" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "صفحه این اٌپ را در apps.owncloud.com ببینید" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-مجاز از طرف " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "به روز رسانی" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "مستندات کاربر" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "مستندات مدیر" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "مستندات آنلاین" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "انجمن" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "ردیاب باگ " +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "پشتیبانی تجاری" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "شما استفاده کردید از %s از میزان در دسترس %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "برنامه ها را دریافت کنید تا فایل هایتان را همگام سازید" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "راهبری کمکی اجرای اول را دوباره نمایش بده" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "گذرواژه" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "رمز عبور شما تغییر یافت" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "ناتوان در تغییر گذرواژه" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "گذرواژه کنونی" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "گذرواژه جدید" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "تغییر گذر واژه" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "نام نمایشی" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "پست الکترونیکی" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "پست الکترونیکی شما" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "زبان" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "به ترجمه آن کمک کنید" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -459,40 +453,40 @@ msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "نام کاربری" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "ایجاد کردن" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "ذخیره سازی پیش فرض" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "نامحدود" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "سایر" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "حافظه" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "تغییر نام نمایشی" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "تنظیم کلمه عبور جدید" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "پیش فرض" +msgstr "" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index be344210e5..7102647ba1 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Amir Reza Asadi , 2013. -# mahdi Kereshteh , 2013. -# Mohammad Dashtizadeh , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -22,11 +19,11 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "عملیات حذف پیکربندی سرور ناموفق ماند" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "پیکربندی معتبر است و ارتباط می تواند برقرار شود" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" @@ -42,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "حذف کردن انجام نشد" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -50,7 +47,7 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "آیا تنظیمات ذخیره شود ؟" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" @@ -58,19 +55,19 @@ msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "تست اتصال با موفقیت انجام گردید" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "تست اتصال ناموفق بود" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "آیا واقعا می خواهید پیکربندی کنونی سرور را حذف کنید؟" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "تایید حذف" +msgstr "" #: templates/settings.php:8 msgid "" @@ -87,15 +84,15 @@ msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "پیکربندی سرور" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "افزودن پیکربندی سرور" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "میزبانی" +msgstr "" #: templates/settings.php:38 msgid "" @@ -127,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "رمز عبور" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -163,7 +160,7 @@ msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "فیلتر گروه" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." @@ -187,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "درگاه" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -311,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "در بایت" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -333,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "راه‌نما" +msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 4094a46291..8ef1822f82 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# variaatiox , 2012 -# Jesse Jaara , 2012 -# Jiri Grönroos , 2012-2013 -# Johannes Korpela <>, 2012 -# Pekka Sutela , 2012 -# teho , 2012 -# tscooter , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -27,39 +20,39 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Käyttäjä %s jakoi tiedoston kanssasi" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Käyttäjä %s jakoi kansion kanssasi" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Käyttäjä %s jakoi tiedoston \"%s\" kanssasi. Se on ladattavissa täältä: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Käyttäjä %s jakoi kansion \"%s\" kanssasi. Se on ladattavissa täältä: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Luokan tyyppiä ei määritelty." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Ei lisättävää luokkaa?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Luokka on jo olemassa: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -76,168 +69,168 @@ msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Virhe lisätessä kohdetta %s suosikkeihin." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Luokkia ei valittu poistettavaksi." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Virhe poistaessa kohdetta %s suosikeista." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Sunnuntai" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Maanantai" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Tiistai" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Keskiviikko" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Torstai" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Perjantai" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Lauantai" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Tammikuu" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Helmikuu" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Maaliskuu" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Huhtikuu" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Toukokuu" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Kesäkuu" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Heinäkuu" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Elokuu" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Syyskuu" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Lokakuu" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Marraskuu" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Joulukuu" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Asetukset" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sekuntia sitten" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minuutti sitten" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minuuttia sitten" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 tunti sitten" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} tuntia sitten" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "tänään" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "eilen" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} päivää sitten" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "viime kuussa" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} kuukautta sitten" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "kuukautta sitten" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "viime vuonna" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "vuotta sitten" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Peru" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Valitse" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Kyllä" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Ei" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -250,87 +243,87 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Virhe" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Sovelluksen nimeä ei ole määritelty." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Vaadittua tiedostoa {file} ei ole asennettu!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Jaettu" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Jaa" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Virhe jaettaessa" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Virhe jakoa peruttaessa" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Virhe oikeuksia muuttaessa" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Jaettu kanssasi käyttäjän {owner} toimesta" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Jaa" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Jaa linkillä" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Suojaa salasanalla" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Salasana" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Lähetä linkki sähköpostitse" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Lähetä" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Aseta päättymispäivä" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Päättymispäivä" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Jaa sähköpostilla:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Henkilöitä ei löytynyt" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Jakaminen uudelleen ei ole salittu" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" @@ -338,156 +331,156 @@ msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Peru jakaminen" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "voi muokata" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "Pääsyn hallinta" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "luo" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "päivitä" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "poista" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "jaa" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Salasanasuojattu" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Virhe purettaessa eräpäivää" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Virhe päättymispäivää asettaessa" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Lähetetään..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Sähköposti lähetetty" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Päivitys epäonnistui. Ilmoita ongelmasta ownCloud-yhteisölle." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Päivitys onnistui. Selain ohjautuu nyt ownCloudiisi." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud-salasanan nollaus" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Saat sähköpostitse linkin nollataksesi salasanan." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Salasanan nollausviesti lähetetty." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Pyyntö epäonnistui!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Käyttäjätunnus" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Tilaus lähetetty" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Salasanasi nollattiin" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Kirjautumissivulle" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Uusi salasana" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Palauta salasana" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Henkilökohtaiset" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Käyttäjät" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Sovellukset" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Hallinta" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Ohje" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Pääsy estetty" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Pilveä ei löydy" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Muokkaa luokkia" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Lisää" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Turvallisuusvaroitus" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "PHP-asennuksesi on haavoittuvainen NULL Byte -hyökkäykselle (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Päivitä PHP-asennuksesi käyttääksesi ownCloudia turvallisesti." +msgstr "" #: templates/installation.php:32 msgid "" @@ -505,108 +498,108 @@ msgstr "" msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Datakansiosi ja tiedostosi ovat mitä luultavimmin muiden saavutettavissa internetistä, koska .htaccess-tiedosto ei toimi." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Katso palvelimen asetuksien määrittämiseen liittyvät ohjeet dokumentaatiosta." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Luo ylläpitäjän tunnus" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Lisäasetukset" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Datakansio" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Muokkaa tietokantaa" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "käytetään" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Tietokannan käyttäjä" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Tietokannan salasana" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Tietokannan nimi" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Tietokannan taulukkotila" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Tietokantapalvelin" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Viimeistele asennus" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "verkkopalvelut hallinnassasi" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Kirjaudu ulos" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automaattinen sisäänkirjautuminen hylättiin!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu." +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Unohditko salasanasi?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "muista" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Kirjaudu sisään" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Vaihtoehtoiset kirjautumiset" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "edellinen" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "seuraava" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken." +msgstr "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 5bb16c0547..05463ebb29 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -3,18 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jesse Jaara , 2012 -# Jiri Grönroos , 2012-2013 -# Johannes Korpela <>, 2012 -# teho , 2012 -# tscooter , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,99 +20,99 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Kohteen %s siirto ei onnistunut" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Tiedoston nimeäminen uudelleen ei onnistunut" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Tiedoston lähetys onnistui vain osittain" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Yhtäkään tiedostoa ei lähetetty" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Väliaikaiskansiota ei ole olemassa" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Levylle kirjoitus epäonnistui" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Tallennustilaa ei ole riittävästi käytettävissä" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Virheellinen kansio." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Tiedostot" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Jaa" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Poista pysyvästi" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Poista" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Nimeä uudelleen" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Odottaa" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} on jo olemassa" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "korvaa" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "ehdota nimeä" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "peru" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" @@ -125,11 +120,11 @@ msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "kumoa" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "suorita poistotoiminto" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" @@ -141,52 +136,52 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' on virheellinen nimi tiedostolle." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Tiedoston nimi ei voi olla tyhjä." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Tallennustila on melkein loppu ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Tilaa ei ole riittävästi" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Lähetys peruttu." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Verkko-osoite ei voi olla tyhjä" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -194,130 +189,130 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Virhe" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nimi" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Koko" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Muutettu" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 kansio" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} kansiota" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 tiedosto" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} tiedostoa" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Lähetä" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Tiedostonhallinta" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Lähetettävän tiedoston suurin sallittu koko" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "suurin mahdollinen:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Tarvitaan useampien tiedostojen ja kansioiden latausta varten." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Ota ZIP-paketin lataaminen käytöön" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 on rajoittamaton" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP-tiedostojen enimmäiskoko" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Tallenna" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Uusi" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Tekstitiedosto" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Kansio" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Linkistä" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Poistetut tiedostot" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Peru lähetys" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Tunnuksellasi ei ole kirjoitusoikeuksia tänne." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Lataa" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Peru jakaminen" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Lähetettävä tiedosto on liian suuri" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Tiedostoja tarkistetaan, odota hetki." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Tämänhetkinen tutkinta" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Päivitetään tiedostojärjestelmän välimuistia..." +msgstr "" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 606ba38b82..d9c5f6faf2 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jiri Grönroos , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -20,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Salaus" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Tiedostojen salaus on käytössä." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Seuraavia tiedostotyyppejä ei salata:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Älä salaa seuravia tiedostotyyppejä:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ei mitään" +msgstr "" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index b34cf9d005..e1c56d6fb8 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -3,16 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# variaatiox , 2012 -# Jiri Grönroos , 2012-2013 -# teho , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 06:00+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Pääsy sallittu" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Virhe Dropbox levyn asetuksia tehtäessä" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Salli pääsy" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Virhe Google Drive levyn asetuksia tehtäessä" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Varoitus: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Varoitus: PHP:n Curl-tuki ei ole käytössä tai sitä ei ole lainkaan asennettu. ownCloudin, WebDAV:in tai Google Driven liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan Curl-tuki käyttöön." +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Erillinen tallennusväline" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Kansion nimi" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Ulkoinen tallennustila" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Asetukset" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Valinnat" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Sovellettavissa" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Lisää tallennustila" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Ei asetettu" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Kaikki käyttäjät" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Ryhmät" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Käyttäjät" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Poista" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Ota käyttöön ulkopuoliset tallennuspaikat" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Salli käyttäjien liittää omia erillisiä tallennusvälineitä" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL-juurivarmenteet" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Tuo juurivarmenne" +msgstr "" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 5abc5ffddc..434f4b7617 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jiri Grönroos , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Salasana" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Lähetä" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s jakoi kansion %s kanssasi" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s jakoi tiedoston %s kanssasi" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Lataa" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Ei esikatselua kohteelle" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "verkkopalvelut hallinnassasi" +msgstr "" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 6f3b5b2708..86c7f7ee04 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jiri Grönroos , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Kohdetta %s ei voitu poistaa pysyvästi" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Kohteen %s palautus epäonnistui" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "suorita palautustoiminto" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Virhe" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "poista tiedosto pysyvästi" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Poista pysyvästi" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nimi" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Poistettu" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 kansio" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} kansiota" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 tiedosto" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} tiedostoa" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Tyhjää täynnä! Roskakorissa ei ole mitään." +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Palauta" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Poista" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Poistetut tiedostot" +msgstr "" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index 1dbda29303..07030404a1 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jiri Grönroos , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -21,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Palautus epäonnistui: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "onnistui" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Tiedosto %s palautettiin versioon %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "epäonnistui" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Tiedoston %s palautus versioon %s epäonnistui" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Vanhoja versioita ei ole saatavilla" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Polkua ei ole määritetty" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versiot" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Palauta tiedoston edellinen versio napsauttamalla palautuspainiketta" +msgstr "" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 187363f2d8..301caf672c 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jiri Grönroos , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -20,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Ohje" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Henkilökohtainen" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Asetukset" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Käyttäjät" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Sovellukset" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Ylläpitäjä" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP-lataus on poistettu käytöstä." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Tiedostot on ladattava yksittäin." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Takaisin tiedostoihin" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "ei voitu määrittää" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Sovellusta ei ole otettu käyttöön" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Todennusvirhe" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Valtuutus vanheni. Lataa sivu uudelleen." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Tiedostot" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Teksti" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Kuvat" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Aseta ylläpitäjän käyttäjätunnus." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Aseta ylläpitäjän salasana." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s anna tietokannan käyttäjätunnus." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s anna tietokannan nimi." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s et voi käyttää pisteitä tietokannan nimessä" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL:n käyttäjätunnus ja/tai salasana on väärin" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Tietokantavirhe: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL-käyttäjä '%s'@'localhost' on jo olemassa." +msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" -msgstr "Pudota tämä käyttäjä MySQL:stä" - -#: setup.php:309 -#, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL-käyttäjä '%s'@'%%' on jo olemassa" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Pudota tämä käyttäjä MySQL:stä." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Lue tarkasti asennusohjeet." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sekuntia sitten" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minuutti sitten" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minuuttia sitten" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 tunti sitten" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d tuntia sitten" +msgstr "" #: template.php:118 msgid "today" -msgstr "tänään" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "eilen" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d päivää sitten" +msgstr "" #: template.php:121 msgid "last month" -msgstr "viime kuussa" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d kuukautta sitten" +msgstr "" #: template.php:123 msgid "last year" -msgstr "viime vuonna" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "vuotta sitten" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s on saatavilla. Lue lisätietoja" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "ajan tasalla" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "päivitysten tarkistus on pois käytöstä" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Luokkaa \"%s\" ei löytynyt" +msgstr "" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index f8cd476e3a..595083d162 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jesse Jaara , 2012 -# Jiri Grönroos , 2012-2013 -# teho , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -22,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Todennusvirhe" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -35,126 +32,126 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Näyttönimen muuttaminen epäonnistui" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Ryhmä on jo olemassa" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Ryhmän lisäys epäonnistui" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Sovelluksen käyttöönotto epäonnistui." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Sähköposti tallennettu" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Virheellinen sähköposti" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Ryhmän poisto epäonnistui" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Käyttäjän poisto epäonnistui" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Kieli on vaihdettu" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Virheellinen pyyntö" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Ylläpitäjät eivät poistaa omia tunnuksiaan ylläpitäjien ryhmästä" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Käyttäjän tai ryhmän %s lisääminen ei onnistu" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Käyttäjän poistaminen ryhmästä %s ei onnistu" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Sovelluksen päivitys epäonnistui." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Päivitä versioon {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Poista käytöstä" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Käytä" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Odota hetki..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Virhe" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Päivitetään..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Virhe sovellusta päivittäessä" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Päivitetty" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Tallennetaan..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "poistettu" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "kumoa" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Käyttäjän poistaminen ei onnistunut" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Ryhmät" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Ryhmän ylläpitäjä" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Poista" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "lisää ryhmä" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" @@ -162,7 +159,7 @@ msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Virhe käyttäjää luotaessa" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" @@ -170,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "_kielen_nimi_" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Turvallisuusvaroitus" +msgstr "" #: templates/admin.php:18 msgid "" @@ -183,7 +180,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" @@ -198,11 +195,11 @@ msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Lue tarkasti asennusohjeet." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Moduuli 'fileinfo' puuttuu" +msgstr "" #: templates/admin.php:47 msgid "" @@ -224,7 +221,7 @@ msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Internet-yhteys ei toimi" +msgstr "" #: templates/admin.php:78 msgid "" @@ -238,7 +235,7 @@ msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" @@ -258,52 +255,52 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Jakaminen" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Käytä jakamisen ohjelmointirajapintaa" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Salli linkit" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Salli käyttäjien jakaa kohteita käyttäen linkkejä" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Salli uudelleenjakaminen" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Tietoturva" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Pakota HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Pakottaa salaamaan ownCloudiin kohdistuvat yhteydet." +msgstr "" #: templates/admin.php:185 msgid "" @@ -313,23 +310,23 @@ msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Loki" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Lokitaso" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Enemmän" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Vähemmän" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versio" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -339,60 +336,60 @@ msgid "" "licensed under the AGPL." -msgstr "Kehityksestä on vastannut ownCloud-yhteisö, lähdekoodi on julkaistu lisenssin AGPL alaisena." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Lisää sovelluksesi" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Lisää sovelluksia" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Valitse sovellus" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-lisensoija " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Päivitä" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Käyttäjäohjeistus" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Ylläpito-ohjeistus" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Verkko-ohjeistus" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Keskustelupalsta" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Ohjelmistovirheiden jäljitys" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Kaupallinen tuki" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Käytössäsi on %s/%s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" @@ -400,96 +397,96 @@ msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Näytä ensimmäisen käyttökerran avustaja uudelleen" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Salasana" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Salasanasi vaihdettiin" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Salasanaasi ei voitu vaihtaa" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Nykyinen salasana" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Uusi salasana" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Vaihda salasana" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Näyttönimi" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Sähköposti" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Sähköpostiosoitteesi" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Kieli" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Auta kääntämisessä" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Kirjautumisnimi" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Luo" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Oletustallennustila" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Rajoittamaton" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Muu" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Tallennustila" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "vaihda näyttönimi" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "aseta uusi salasana" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Oletus" +msgstr "" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index a72be9f164..66d49fd00d 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Jiri Grönroos , 2012-2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -42,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Poisto epäonnistui" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -50,19 +47,19 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Säilytetäänkö asetukset?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Palvelinasetusten lisäys epäonnistui" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Yhteystesti onnistui" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Yhteystesti epäonnistui" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" @@ -70,7 +67,7 @@ msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Vahvista poisto" +msgstr "" #: templates/settings.php:8 msgid "" @@ -95,16 +92,16 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Isäntä" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ää. Aloita silloin ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Oletus DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" @@ -112,70 +109,70 @@ msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä " +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Käyttäjän DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "Asiakasohjelman DN, jolla yhdistäminen tehdään, ts. uid=agent,dc=example,dc=com. Mahdollistaaksesi anonyymin yhteyden, jätä DN ja salasana tyhjäksi." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Salasana" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Jos haluat mahdollistaa anonyymin pääsyn, jätä DN ja Salasana tyhjäksi " +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Login suodatus" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Määrittelee käytettävän suodattimen, kun sisäänkirjautumista yritetään. %%uid korvaa sisäänkirjautumisessa käyttäjätunnuksen." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "käytä %%uid paikanvaraajaa, ts. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Käyttäjien suodatus" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Määrittelee käytettävän suodattimen, kun käyttäjiä haetaan. " +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "ilman paikanvaraustermiä, ts. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Ryhmien suodatus" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Määrittelee käytettävän suodattimen, kun ryhmiä haetaan. " +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "ilman paikanvaraustermiä, ts. \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Yhteysasetukset" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" @@ -187,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Portti" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -205,7 +202,7 @@ msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Poista pääpalvelin käytöstä" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." @@ -213,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Käytä TLS:ää" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -221,21 +218,21 @@ msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Kirjainkoosta piittamaton LDAP-palvelin (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Poista käytöstä SSL-varmenteen vahvistus" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Ei suositella, käytä vain testausta varten." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -243,23 +240,23 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "sekunneissa. Muutos tyhjentää välimuistin." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Hakemistoasetukset" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Käyttäjän näytettävän nimen kenttä" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP-attribuutti, jota käytetään käyttäjän ownCloud-käyttäjänimenä " +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Oletuskäyttäjäpuu" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" @@ -275,15 +272,15 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Ryhmän \"näytettävä nimi\"-kenttä" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP-attribuutti, jota käytetään luomaan ryhmän ownCloud-nimi" +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Ryhmien juuri" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" @@ -295,7 +292,7 @@ msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Ryhmän ja jäsenen assosiaatio (yhteys)" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -311,11 +308,11 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "tavuissa" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Sähköpostikenttä" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" @@ -325,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -333,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Ohje" +msgstr "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index f7f10c32bd..e3a41f513f 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,26 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2012-2013 -# dbasquin , 2013 -# dbasquin , 2013 -# ptit_boogy , 2013 -# fkhannouf , 2012 -# Florentin Le Moal , 2012 -# Guillaume Paumier , 2012-2013 -# mishka , 2012 -# Nahir Mohamed , 2012 -# Paul McFly , 2012 -# ouafnico , 2012 -# Robert Di Rosa <>, 2013 -# Romain DEP. , 2011 -# Romain DEP. , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -34,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "L'utilisateur %s a partagé un fichier avec vous" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "L'utilsateur %s a partagé un dossier avec vous" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "L'utilisateur %s a partagé le dossier \"%s\" avec vous. Il est disponible au téléchargement ici : %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Type de catégorie non spécifié." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Pas de catégorie à ajouter ?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Cette catégorie existe déjà : %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Type d'objet non spécifié." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "L'identifiant de %s n'est pas spécifié." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Erreur lors de l'ajout de %s aux favoris." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Aucune catégorie sélectionnée pour suppression" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Erreur lors de la suppression de %s des favoris." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Dimanche" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Lundi" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Mardi" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Mercredi" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Jeudi" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Vendredi" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Samedi" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "janvier" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "février" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "mars" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "avril" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "mai" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "juin" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "juillet" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "août" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "septembre" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "octobre" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "novembre" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "décembre" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Paramètres" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "il y a quelques secondes" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "il y a une minute" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "il y a {minutes} minutes" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "Il y a une heure" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "Il y a {hours} heures" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "aujourd'hui" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "hier" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "il y a {days} jours" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "le mois dernier" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "Il y a {months} mois" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "il y a plusieurs mois" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "l'année dernière" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "il y a plusieurs années" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Annuler" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Choisir" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Oui" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Non" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Le type d'objet n'est pas spécifié." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -257,363 +243,363 @@ msgstr "Le type d'objet n'est pas spécifié." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Erreur" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Le nom de l'application n'est pas spécifié." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Le fichier requis {file} n'est pas installé !" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Partagé" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Partager" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Erreur lors de la mise en partage" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Erreur lors de l'annulation du partage" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Erreur lors du changement des permissions" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Partagé par {owner} avec vous et le groupe {group}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Partagé avec vous par {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Partager avec" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Partager via lien" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Protéger par un mot de passe" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Mot de passe" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Envoyez le lien par email" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Envoyer" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Spécifier la date d'expiration" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Date d'expiration" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Partager via e-mail :" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Aucun utilisateur trouvé" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Le repartage n'est pas autorisé" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Partagé dans {item} avec {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Ne plus partager" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "édition autorisée" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "contrôle des accès" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "créer" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "mettre à jour" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "supprimer" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "partager" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Protégé par un mot de passe" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Erreur lors de la spécification de la date d'expiration" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "En cours d'envoi ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Email envoyé" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "La mise à jour a échoué. Veuillez signaler ce problème à la communauté ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Réinitialisation de votre mot de passe Owncloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Mail de réinitialisation envoyé." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "La requête a échoué !" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nom d'utilisateur" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Demander la réinitialisation" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Votre mot de passe a été réinitialisé" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Retour à la page d'authentification" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nouveau mot de passe" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Réinitialiser le mot de passe" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personnels" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Utilisateurs" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Applications" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administration" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Aide" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Accès interdit" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Introuvable" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Modifier les catégories" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Ajouter" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Avertissement de sécurité" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Votre version de PHP est vulnérable à l'attaque par caractère NULL (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Veuillez mettre à jour votre installation PHP pour utiliser ownCloud de façon sécurisée." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Aucun générateur de nombre aléatoire sécurisé n'est disponible, veuillez activer l'extension PHP OpenSSL" +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sans générateur de nombre aléatoire sécurisé, un attaquant peut être en mesure de prédire les jetons de réinitialisation du mot de passe, et ainsi prendre le contrôle de votre compte utilisateur." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Votre répertoire data est certainement accessible depuis l'internet car le fichier .htaccess ne semble pas fonctionner" +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Pour les informations de configuration de votre serveur, veuillez lire la documentation." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Créer un compte administrateur" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avancé" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Répertoire des données" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configurer la base de données" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "sera utilisé" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Utilisateur pour la base de données" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Mot de passe de la base de données" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nom de la base de données" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Tablespaces de la base de données" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Serveur de la base de données" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Terminer l'installation" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "services web sous votre contrôle" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Se déconnecter" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Connexion automatique rejetée !" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Si vous n'avez pas changé votre mot de passe récemment, votre compte risque d'être compromis !" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Mot de passe perdu ?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "se souvenir de moi" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Connexion" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Logins alternatifs" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "précédent" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "suivant" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." +msgstr "" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index cc8ecb1ccc..52b1c2eb7c 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -3,29 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adalberto Rodrigues , 2013 -# Flywall , 2013 -# Christophe Lherieau , 2012-2013 -# Cyril Glapa , 2012 -# dbasquin , 2013 -# dbasquin , 2013 -# froozeify , 2013 -# Geoffrey Guerrier , 2012 -# gp4004 , 2012 -# guiguidu31300 , 2012 -# Guillaume Paumier , 2012 -# ytzelf , 2012 -# Nahir Mohamed , 2012 -# Robert Di Rosa <>, 2012-2013 -# Romain DEP. , 2011 -# Romain DEP. , 2012-2013 -# Zertrin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -37,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Impossible de déplacer %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Impossible de renommer le fichier" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Aucun fichier n'a été chargé. Erreur inconnue" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Aucune erreur, le fichier a été téléversé avec succès" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Le fichier n'a été que partiellement téléversé" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Aucun fichier n'a été téléversé" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Il manque un répertoire temporaire" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Erreur d'écriture sur le disque" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Plus assez d'espace de stockage disponible" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Dossier invalide." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Fichiers" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Partager" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Supprimer de façon définitive" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Supprimer" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Renommer" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "En cours" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} existe déjà" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "remplacer" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "Suggérer un nom" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "annuler" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} a été remplacé par {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "annuler" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "effectuer l'opération de suppression" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 fichier en cours de téléchargement" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "fichiers en cours de téléchargement" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' n'est pas un nom de fichier valide." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Le nom de fichier ne peut être vide." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet." +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Espace disponible insuffisant" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Chargement annulé." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "L'URL ne peut-être vide" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Erreur" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nom" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Taille" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modifié" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 dossier" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} dossiers" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 fichier" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} fichiers" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Envoyer" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Gestion des fichiers" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Taille max. d'envoi" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "Max. possible :" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Nécessaire pour le téléchargement de plusieurs fichiers et de dossiers." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Activer le téléchargement ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 est illimité" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Taille maximale pour les fichiers ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Sauvegarder" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nouveau" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Fichier texte" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Dossier" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Depuis le lien" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Fichiers supprimés" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Annuler l'envoi" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Vous n'avez pas le droit d'écriture ici." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Télécharger" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Ne plus partager" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Fichier trop volumineux" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Analyse en cours" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Mise à niveau du cache du système de fichier" +msgstr "" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 3483ba9782..d778322e32 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Romain DEP. , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -20,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Chiffrement" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Le chiffrement des fichiers est activé" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Les fichiers de types suivants ne seront pas chiffrés :" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Ne pas chiffrer les fichiers dont les types sont les suivants :" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Aucun" +msgstr "" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 925a7f1696..d183c07ba4 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -3,17 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2013 -# ouafnico , 2012 -# Romain DEP. , 2012 -# Zertrin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 15:50+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Accès autorisé" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Erreur lors de la configuration du support de stockage Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Autoriser l'accès" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de passe valides." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Erreur lors de la configuration du support de stockage Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Attention : Le support de Curl n'est pas activé ou installé dans PHP. Le montage de ownCloud / WebDAV ou GoogleDrive n'est pas possible. Contactez votre administrateur système pour l'installer." +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Stockage externe" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nom du dossier" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Stockage externe" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Configuration" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Options" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Disponible" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Ajouter un support de stockage" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Aucun spécifié" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Tous les utilisateurs" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Groupes" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Utilisateurs" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Supprimer" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Activer le stockage externe pour les utilisateurs" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Autoriser les utilisateurs à monter leur propre stockage externe" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Certificats racine SSL" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importer un certificat racine" +msgstr "" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 9959bf5b5c..8a8bcaeb00 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# Guillaume Paumier , 2012. -# Romain DEP. , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -24,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Mot de passe" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Envoyer" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s a partagé le répertoire %s avec vous" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s a partagé le fichier %s avec vous" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Télécharger" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Pas d'aperçu disponible pour" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "services web sous votre contrôle" +msgstr "" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index f49412eee3..f85ad8ebf3 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cédric MARTIN , 2013. -# Romain DEP. , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Impossible d'effacer %s de façon permanente" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Impossible de restaurer %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "effectuer l'opération de restauration" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Erreur" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "effacer définitivement le fichier" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Supprimer de façon définitive" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nom" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Effacé" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 dossier" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} dossiers" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 fichier" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} fichiers" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Il n'y a rien ici. Votre corbeille est vide !" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Restaurer" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Supprimer" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Fichiers effacés" +msgstr "" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index e997c199e0..1b4c1835da 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Romain DEP. , 2012-2013. -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Impossible de restaurer %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "succès" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Le fichier %s a été restauré dans sa version %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "échec" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Le fichier %s ne peut être restauré dans sa version %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Aucune ancienne version n'est disponible" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Aucun chemin spécifié" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versions" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Restaurez un fichier dans une version antérieure en cliquant sur son bouton de restauration" +msgstr "" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 915a78cd2a..50356d5702 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2013 -# Geoffrey Guerrier , 2012 -# Robert Di Rosa <>, 2013 -# Romain DEP. , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -23,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Aide" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personnel" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Paramètres" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Utilisateurs" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Applications" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administration" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Téléchargement ZIP désactivé." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Les fichiers nécessitent d'être téléchargés un par un." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Retour aux Fichiers" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "impossible à déterminer" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "L'application n'est pas activée" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Erreur d'authentification" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "La session a expiré. Veuillez recharger la page." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Fichiers" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Texte" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Images" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Spécifiez un mot de passe administrateur." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s entrez le nom d'utilisateur de la base de données." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s entrez le nom de la base de données." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s vous nez pouvez pas utiliser de points dans le nom de la base de données" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s spécifiez l'hôte de la base de données." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Nom d'utilisateur et/ou mot de passe de la base PostgreSQL invalide" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Erreur de la base de données : \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "La requête en cause est : \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "L'utilisateur MySQL '%s'@'localhost' existe déjà." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Retirer cet utilisateur de la base MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "L'utilisateur MySQL '%s'@'%%' existe déjà" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Retirer cet utilisateur de la base MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Le nom d'utilisateur et/ou le mot de passe de la base MS SQL est invalide : %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Veuillez vous référer au guide d'installation." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "à l'instant" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "il y a 1 minute" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "il y a %d minutes" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "Il y a une heure" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "Il y a %d heures" +msgstr "" #: template.php:118 msgid "today" -msgstr "aujourd'hui" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "hier" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "il y a %d jours" +msgstr "" #: template.php:121 msgid "last month" -msgstr "le mois dernier" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "Il y a %d mois" +msgstr "" #: template.php:123 msgid "last year" -msgstr "l'année dernière" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "il y a plusieurs années" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s est disponible. Obtenez plus d'informations" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "À jour" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "la vérification des mises à jour est désactivée" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Impossible de trouver la catégorie \"%s\"" +msgstr "" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index d359b6fd18..8ef0b73e9b 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -3,31 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adalberto Rodrigues , 2013 -# Brice , 2012 -# Flywall , 2013 -# Christophe Lherieau , 2013 -# Cyril Glapa , 2012 -# dbasquin , 2013 -# Francois_Boulogne , 2011 -# Florentin Le Moal , 2012 -# gp4004 , 2012 -# guiguidu31300 , 2012 -# Jan-Christoph Borchardt , 2011 -# ytzelf , 2012 -# mishka , 2012 -# Nahir Mohamed , 2012-2013 -# Pierre-Amiel Giraud , 2012 -# Robert Di Rosa <>, 2012 -# Romain DEP. , 2011, 2012 -# Romain DEP. , 2012-2013 -# jiminybillybob , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -38,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Impossible de charger la liste depuis l'App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Erreur d'authentification" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -51,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Impossible de modifier le nom d'affichage" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Ce groupe existe déjà" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Impossible d'ajouter le groupe" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Impossible d'activer l'Application" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-mail sauvegardé" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "E-mail invalide" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Impossible de supprimer le groupe" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Impossible de supprimer l'utilisateur" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Langue changée" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Requête invalide" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Les administrateurs ne peuvent pas se retirer eux-mêmes du groupe admin" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Impossible d'ajouter l'utilisateur au groupe %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Impossible de supprimer l'utilisateur du groupe %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Impossible de mettre à jour l'application" +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Mettre à jour vers {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Désactiver" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Activer" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Veuillez patienter…" +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Erreur" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Mise à jour..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Erreur lors de la mise à jour de l'application" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Mise à jour effectuée avec succès" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Sauvegarde..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "supprimé" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "annuler" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Impossible de retirer l'utilisateur" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Groupes" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Groupe Admin" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Supprimer" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "ajouter un groupe" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Un nom d'utilisateur valide doit être saisi" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Erreur lors de la création de l'utilisateur" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Un mot de passe valide doit être saisi" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Français" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Avertissement de sécurité" +msgstr "" #: templates/admin.php:18 msgid "" @@ -199,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de manière à ce que le dossier data ne soit plus accessible ou bien de déplacer le dossier data en dehors du dossier racine des documents du serveur web." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Avertissement, problème de configuration" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Veuillez vous référer au guide d'installation." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Module 'fileinfo' manquant" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Localisation non fonctionnelle" +msgstr "" #: templates/admin.php:63 #, php-format @@ -236,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Ce serveur ownCloud ne peut pas ajuster la localisation du système en %s. Cela signifie qu'il pourra y avoir des problèmes avec certains caractères dans les noms de fichiers. Il est vivement recommandé d'installer les paquets requis pour le support de %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "La connexion internet ne fonctionne pas" +msgstr "" #: templates/admin.php:78 msgid "" @@ -250,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Ce serveur ownCloud ne peut pas se connecter à internet. Cela signifie que certaines fonctionnalités, telles que l'utilisation de supports de stockage distants, les notifications de mises à jour, ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne marcheront pas non plus. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez utiliser toutes les fonctionnalités offertes par ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Exécute une tâche à chaque chargement de page" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php est enregistré en tant que service webcron. Veuillez appeler la page cron.php située à la racine du serveur ownCoud via http toute les minutes." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Utilise le service cron du système. Appelle le fichier cron.php du répertoire owncloud toutes les minutes grâce à une tâche cron du système." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Partage" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Activer l'API de partage" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Autoriser les applications à utiliser l'API de partage" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Autoriser les liens" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Autoriser le repartage" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Autoriser les utilisateurs à partager avec tout le monde" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Sécurité" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Forcer HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forcer les clients à se connecter à Owncloud via une connexion chiffrée." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Merci de vous connecter à cette instance Owncloud en HTTPS pour activer ou désactiver SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Log" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Niveau de log" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Plus" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Moins" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Version" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -355,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Développé par la communauté ownCloud, le code source est publié sous license AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Ajoutez votre application" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Plus d'applications…" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Sélectionner une Application" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Voir la page des applications à l'url apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "Distribué sous licence , par " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Mettre à jour" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Documentation utilisateur" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Documentation administrateur" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Documentation en ligne" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Suivi de bugs" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Support commercial" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Vous avez utilisé %s des %s disponibles" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Obtenez les applications de synchronisation de vos fichiers" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Revoir le premier lancement de l'installeur" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Mot de passe" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Votre mot de passe a été changé" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Impossible de changer votre mot de passe" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Mot de passe actuel" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nouveau mot de passe" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Changer de mot de passe" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Nom affiché" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-mail" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Votre adresse e-mail" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Langue" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Aidez à traduire" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Nom de la connexion" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Créer" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Support de stockage par défaut" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Illimité" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Autre" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Support de stockage" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "Changer le nom affiché" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "Changer le mot de passe" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Défaut" +msgstr "" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index dafca62301..abe6a9bc13 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -3,20 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyril Glapa , 2012. -# , 2012. -# , 2012. -# Romain DEP. , 2012-2013. -# , 2013. -# , 2012. -# , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -27,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Échec de la suppression de la configuration du serveur" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "La configuration est valide et la connexion peut être établie !" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "La configuration est valide, mais le lien ne peut être établi. Veuillez vérifier les paramètres du serveur ainsi que vos identifiants de connexion." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "La configuration est invalide. Veuillez vous référer aux fichiers de journaux ownCloud pour plus d'information." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "La suppression a échoué" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Récupérer les paramètres depuis une configuration récente du serveur ?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Garder ces paramètres ?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Impossible d'ajouter la configuration du serveur." +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Test de connexion réussi" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Le test de connexion a échoué" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Êtes-vous vraiment sûr de vouloir effacer la configuration actuelle du serveur ?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Confirmer la suppression" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Avertissement: Les applications user_ldap et user_webdavauth sont incompatibles. Des disfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il désactive l'une d'elles." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Attention : Le module php LDAP n'est pas installé, par conséquent cette extension ne pourra fonctionner. Veuillez contacter votre administrateur système afin qu'il l'installe." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Configuration du serveur" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Ajouter une configuration du serveur" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Hôte" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN Racine" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Un DN racine par ligne" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Vous pouvez spécifier les DN Racines de vos utilisateurs et groupes via l'onglet Avancé" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN Utilisateur (Autorisé à consulter l'annuaire)" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN de l'utilisateur client pour lequel la liaison doit se faire, par exemple uid=agent,dc=example,dc=com. Pour un accès anonyme, laisser le DN et le mot de passe vides." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Mot de passe" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Pour un accès anonyme, laisser le DN Utilisateur et le mot de passe vides." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Modèle d'authentification utilisateurs" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Définit le motif à appliquer, lors d'une tentative de connexion. %%uid est remplacé par le nom d'utilisateur lors de la connexion." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "veuillez utiliser le champ %%uid , ex.: \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Filtre d'utilisateurs" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Définit le filtre à appliquer lors de la récupération des utilisateurs." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "sans élément de substitution, par exemple \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filtre de groupes" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Définit le filtre à appliquer lors de la récupération des groupes." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "sans élément de substitution, par exemple \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Paramètres de connexion" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Configuration active" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Lorsque non cochée, la configuration sera ignorée." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Serveur de backup (réplique)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Fournir un serveur de backup optionnel. Il doit s'agir d'une réplique du serveur LDAP/AD principal." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Port du serveur de backup (réplique)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Désactiver le serveur principal" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Lorsqu'activé, ownCloud ne se connectera qu'au serveur répliqué." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Utiliser TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "À ne pas utiliser pour les connexions LDAPS (cela échouera)." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Serveur LDAP insensible à la casse (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Désactiver la validation du certificat SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Non recommandé, utilisation pour tests uniquement." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Durée de vie du cache" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "en secondes. Tout changement vide le cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Paramètres du répertoire" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Champ \"nom d'affichage\" de l'utilisateur" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "L'attribut LDAP utilisé pour générer les noms d'utilisateurs d'ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "DN racine de l'arbre utilisateurs" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Un DN racine utilisateur par ligne" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Recherche des attributs utilisateur" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Optionnel, un attribut par ligne" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Champ \"nom d'affichage\" du groupe" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "L'attribut LDAP utilisé pour générer les noms de groupes d'ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "DN racine de l'arbre groupes" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Un DN racine groupe par ligne" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Recherche des attributs du groupe" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Association groupe-membre" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Attributs spéciaux" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Champ du quota" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Quota par défaut" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "en octets" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Champ Email" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Convention de nommage du répertoire utilisateur" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Laisser vide " +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Tester la configuration" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Aide" +msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 8e3fba77f9..dc358e19d9 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# antiparvos , 2012 -# mbouzada , 2013 -# mbouzada , 2012 -# Xosé M. Lamas , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -24,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "O usuario %s compartíu un ficheiro con vostede" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "O usuario %s compartíu un cartafol con vostede" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "O usuario %s compartiu o ficheiro «%s» con vostede. Teno dispoñíbel en: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñíbel en: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Non se indicou o tipo de categoría" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Sen categoría que engadir?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Esta categoría xa existe: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Non se forneceu o tipo de obxecto." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "Non se forneceu o ID %s." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Produciuse un erro ao engadir %s aos favoritos." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Non hai categorías seleccionadas para eliminar." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Produciuse un erro ao eliminar %s dos favoritos." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Domingo" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Luns" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Martes" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Mércores" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Xoves" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Venres" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sábado" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "xaneiro" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "febreiro" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "marzo" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "abril" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "maio" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "xuño" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "xullo" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "agosto" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "setembro" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "outubro" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "novembro" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "decembro" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Configuracións" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "segundos atrás" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "hai 1 minuto" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "hai {minutes} minutos" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "hai 1 hora" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "hai {hours} horas" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "hoxe" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "onte" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "hai {days} días" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "último mes" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "hai {months} meses" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "meses atrás" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "último ano" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "anos atrás" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Aceptar" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Cancelar" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Escoller" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Si" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Non" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Non se especificou o tipo de obxecto." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -247,363 +243,363 @@ msgstr "Non se especificou o tipo de obxecto." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Erro" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Non se especificou o nome do aplicativo." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Non está instalado o ficheiro {file} que se precisa" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Compartir" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Compartir" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Produciuse un erro ao compartir" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Produciuse un erro ao deixar de compartir" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Produciuse un erro ao cambiar os permisos" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Compartido con vostede e co grupo {group} por {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Compartido con vostede por {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Compartir con" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Compartir coa ligazón" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Protexido con contrasinais" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Contrasinal" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Enviar ligazón por correo" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Enviar" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Definir a data de caducidade" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Data de caducidade" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Compartir por correo:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Non se atopou xente" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Non se permite volver a compartir" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Compartido en {item} con {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Deixar de compartir" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "pode editar" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "control de acceso" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "crear" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "actualizar" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "eliminar" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "compartir" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Protexido con contrasinal" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Produciuse un erro ao retirar a data de caducidade" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Produciuse un erro ao definir a data de caducidade" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Enviando..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Correo enviado" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "A actualización non foi satisfactoria, informe deste problema á comunidade de ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "A actualización realizouse correctamente. Redirixíndoo agora á ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Restabelecer o contrasinal de ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Usa a seguinte ligazón para restabelecer o contrasinal: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Recibirá unha ligazón por correo para restabelecer o contrasinal" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Restabelecer o envío por correo." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Non foi posíbel facer a petición" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nome de usuario" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Petición de restabelecemento" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "O contrasinal foi restabelecido" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "A páxina de conexión" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Novo contrasinal" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Restabelecer o contrasinal" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Persoal" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Usuarios" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplicativos" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Axuda" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acceso denegado" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Nube non atopada" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Editar categorías" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Engadir" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Aviso de seguranza" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "A súa versión de PHP é vulnerábel a un ataque de byte nulo (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Actualice a instalación de PHP para empregar ownCloud de xeito seguro." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Non hai un xerador de números ao chou dispoñíbel. Active o engadido de OpenSSL para PHP." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sen un xerador seguro de números ao chou podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "O seu directorio de datos e os ficheiros probabelmente sexan accesíbeis desde a Internet xa que o ficheiro .htaccess non está a traballar." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Para obter información sobre como como configurar axeitadamente o seu servidor, vexa a documentación." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Crear unha contra de administrador" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avanzado" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Cartafol de datos" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configurar a base de datos" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "vai ser utilizado" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Usuario da base de datos" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Contrasinal da base de datos" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nome da base de datos" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Táboa de espazos da base de datos" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Servidor da base de datos" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Rematar a configuración" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "servizos web baixo o seu control" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Desconectar" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Rexeitouse a entrada automática" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Cambie de novo o seu contrasinal para asegurar a súa conta." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Perdeu o contrasinal?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "lembrar" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Conectar" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Accesos alternativos" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "anterior" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "seguinte" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Actualizando ownCloud a versión %s, esto pode levar un anaco." +msgstr "" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 1364764b48..b0dd215425 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# antiparvos , 2012-2013 -# mbouzada , 2013 -# mbouzada , 2013 -# mbouzada , 2013 -# Xosé M. Lamas , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -25,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Non se moveu %s - Xa existe un ficheiro con ese nome." +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Non foi posíbel mover %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Non é posíbel renomear o ficheiro" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Non foi enviado ningún ficheiro. Produciuse un erro descoñecido." +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Non se produciu ningún erro. O ficheiro enviouse correctamente" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "O ficheiro enviado excede a directiva MAX_FILE_SIZE que foi indicada no formulario HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "O ficheiro enviado foi só parcialmente enviado" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Non se enviou ningún ficheiro" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Falta un cartafol temporal" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Produciuse un erro ao escribir no disco" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Non hai espazo de almacenamento abondo" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "O directorio é incorrecto." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Ficheiros" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Compartir" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Eliminar permanentemente" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Eliminar" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Renomear" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Pendentes" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "Xa existe un {new_name}" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "substituír" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "suxerir nome" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "cancelar" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "substituír {new_name} por {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "desfacer" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "realizar a operación de eliminación" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "Enviándose 1 ficheiro" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "ficheiros enviándose" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "«.» é un nome de ficheiro incorrecto" +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "O nome de ficheiro non pode estar baleiro" +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou sincronizar máis os ficheiros!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Non foi posíbel enviar o ficheiro pois ou é un directorio ou ten 0 bytes" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "O espazo dispoñíbel é insuficiente" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Envío cancelado." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "O URL non pode quedar baleiro." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Erro" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nome" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Tamaño" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modificado" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 cartafol" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} cartafoles" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 ficheiro" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} ficheiros" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Enviar" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Manexo de ficheiro" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Tamaño máximo do envío" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "máx. posíbel: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Precísase para a descarga de varios ficheiros e cartafoles." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Habilitar a descarga-ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 significa ilimitado" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Tamaño máximo de descarga para os ficheiros ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Gardar" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Novo" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Ficheiro de texto" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Cartafol" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Desde a ligazón" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Ficheiros eliminados" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Cancelar o envío" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Non ten permisos para escribir aquí." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Aquí non hai nada. Envíe algo." +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Descargar" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Deixar de compartir" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Envío demasiado grande" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Estanse analizando os ficheiros. Agarde." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Análise actual" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Anovando a caché do sistema de ficheiros..." +msgstr "" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index d25b1b2d5a..cd62d9c756 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Cifrado" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "O cifrado de ficheiros está activado" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Os seguintes tipos de ficheiros non van seren cifrados:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Excluír os seguintes tipos de ficheiros do cifrado:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ningún" +msgstr "" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 80aa88f4a7..cb7aee26fd 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -3,16 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mbouzada , 2013 -# mbouzada , 2012 -# Xosé M. Lamas , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 06:10+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Concedeuse acceso" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Produciuse un erro ao configurar o almacenamento en Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Permitir o acceso" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Forneza unha chave correcta e segreda do Dropbox." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Aviso: A compatibilidade de Curl en PHP non está activada ou instalada. Non é posíbel a montaxe de ownCloud / WebDAV ou GoogleDrive. Consulte co administrador do sistema para instalala." +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Almacenamento externo" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nome do cartafol" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Almacenamento externo" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Configuración" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opcións" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Aplicábel" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Engadir almacenamento" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Ningún definido" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Todos os usuarios" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupos" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Usuarios" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Eliminar" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Activar o almacenamento externo do usuario" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Permitir aos usuarios montar os seus propios almacenamentos externos" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Certificados SSL root" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importar o certificado root" +msgstr "" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 657f1da63e..7444183b41 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Contrasinal" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Enviar" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s compartiu o cartafol %s con vostede" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s compartiu o ficheiro %s con vostede" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Descargar" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Sen vista previa dispoñíbel para" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "servizos web baixo o seu control" +msgstr "" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 64cdc9dbdc..214922608f 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Non foi posíbel eliminar %s permanente" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Non foi posíbel restaurar %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "realizar a operación de restauración" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Erro" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "eliminar o ficheiro permanentemente" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Eliminar permanentemente" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nome" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Eliminado" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 cartafol" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} cartafoles" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 ficheiro" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} ficheiros" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Aquí non hai nada. O cesto do lixo está baleiro!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Restablecer" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Eliminar" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Ficheiros eliminados" +msgstr "" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index 0744649b03..c6b5369d32 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Miguel Branco , 2012. -# Xosé M. Lamas , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -24,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Non foi posíbel reverter: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "feito" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "O ficheiro %s foi revertido á versión %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "produciuse un fallo" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Non foi posíbel reverter o ficheiro %s á versión %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Non hai versións antigas dispoñíbeis" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Non foi indicada a ruta" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versións" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Reverta un ficheiro a unha versión anterior premendo no botón reversión" +msgstr "" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 7795b9dddb..4c9f05e39d 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mbouzada , 2013 -# mbouzada , 2012 -# Miguel Branco , 2012 -# Xosé M. Lamas , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -23,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Axuda" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Persoal" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Configuracións" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Usuarios" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplicativos" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administración" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "As descargas ZIP están desactivadas." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Os ficheiros necesitan seren descargados dun en un." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Volver aos ficheiros" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "non foi posíbel determinalo" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "O aplicativo non está activado" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Produciuse un erro na autenticación" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Testemuña caducada. Recargue a páxina." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Ficheiros" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Texto" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Imaxes" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Estabeleza un nome de usuario administrador" +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Estabeleza un contrasinal de administrador" +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s introduza o nome de usuario da base de datos" +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s introduza o nome da base de datos" +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s non se poden empregar puntos na base de datos" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s estabeleza o servidor da base de datos" +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Nome de usuario e/ou contrasinal de PostgreSQL incorrecto" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Deberá introducir unha conta existente ou o administrador." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Nome de usuario e/ou contrasinal de Oracle incorrecto" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Nome de usuario e/ou contrasinal de MySQL incorrecto" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Produciuse un erro na base de datos: «%s»" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "A orde ofensiva foi: «%s»" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "O usuario MySQL '%s'@'localhost' xa existe." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Omitir este usuario de MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "O usuario MySQL «%s»@«%%» xa existe." +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Omitir este usuario de MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nome de usuario e/ou contrasinal de MS SQL incorrecto: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Volva comprobar as guías de instalación" +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "segundos atrás" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "hai 1 minuto" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "hai %d minutos" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "Vai 1 hora" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "Vai %d horas" +msgstr "" #: template.php:118 msgid "today" -msgstr "hoxe" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "onte" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "hai %d días" +msgstr "" #: template.php:121 msgid "last month" -msgstr "último mes" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "Vai %d meses" +msgstr "" #: template.php:123 msgid "last year" -msgstr "último ano" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "anos atrás" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s está dispoñíbel. Obtéña máis información" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "actualizado" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "a comprobación de actualizacións está desactivada" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Non foi posíbel atopar a categoría «%s»" +msgstr "" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index bcd8187ba8..576465a475 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# antiparvos , 2012 -# mbouzada , 2012-2013 -# mbouzada , 2013 -# mbouzada , 2012 -# mbouzada , 2013 -# Xosé M. Lamas , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -25,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Non foi posíbel cargar a lista desde a App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Produciuse un erro de autenticación" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -38,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Non é posíbel cambiar o nome visíbel" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "O grupo xa existe" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Non é posíbel engadir o grupo" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Non é posíbel activar o aplicativo." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Correo gardado" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Correo incorrecto" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Non é posíbel eliminar o grupo." +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Non é posíbel eliminar o usuario" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "O idioma cambiou" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Petición incorrecta" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Os administradores non poden eliminarse a si mesmos do grupo admin" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Non é posíbel engadir o usuario ao grupo %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Non é posíbel eliminar o usuario do grupo %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Non foi posíbel actualizar o aplicativo." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Actualizar á {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Desactivar" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Activar" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Agarde..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Erro" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Actualizando..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Produciuse un erro mentres actualizaba o aplicativo" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Actualizado" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Gardando..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "eliminado" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "desfacer" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Non é posíbel retirar o usuario" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupos" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupo Admin" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Eliminar" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "engadir un grupo" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Debe fornecer un nome de usuario" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Produciuse un erro ao crear o usuario" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Debe fornecer un contrasinal" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Galego" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Aviso de seguranza" +msgstr "" #: templates/admin.php:18 msgid "" @@ -186,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerímoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesíbel ou mova o cartafol de datos fora do directorio raíz de datos do servidor web." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Configurar os avisos" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Volva comprobar as guías de instalación" +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Non se atopou o módulo «fileinfo»" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "A configuración rexional non funciona" +msgstr "" #: templates/admin.php:63 #, php-format @@ -223,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Este servidor ownCloud non pode estabelecer a configuración rexional do sistema a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que inste os paquetes necesarios no sistema para aceptar o %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "A conexión á Internet non funciona" +msgstr "" #: templates/admin.php:78 msgid "" @@ -237,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Este servidor ownCloud non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades de ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Executar unha tarefa con cada páxina cargada" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php está rexistrado nun servizo de WebCron. Chame á página cron.php na raíz ownCloud unha vez por minuto a través de HTTP." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Use o servizo de sistema cron. Chame ao ficheiro cron.php no catfaol owncloud a través dun sistema de cronjob unna vez por minuto." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Compartindo" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Activar o API para compartir" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Permitir que os aplicativos empreguen o API para compartir" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Permitir ligazóns" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Permitir que os usuarios compartan elementos ao público con ligazóns" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Permitir compartir" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Permitir que os usuarios compartan de novo os elementos compartidos con eles" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Permitir que os usuarios compartan con calquera" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Permitir que os usuarios compartan só cos usuarios dos seus grupos" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Seguranza" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Forzar HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forzar que os clientes se conecten a ownCloud empregando unha conexión cifrada" +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Conectese a esta instancia ownCloud empregando HTTPS para activar ou desactivar o forzado de SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Rexistro" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Nivel de rexistro" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Máis" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Menos" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versión" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -342,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Desenvolvido pola comunidade ownCloud, o código fonte está baixo a licenza AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Engada o seu aplicativo" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Máis aplicativos" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Escolla un aplicativo" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Consulte a páxina do aplicativo en apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licenciado por" +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Actualizar" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Documentación do usuario" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Documentación do administrador" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Documentación na Rede" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Foro" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Seguemento de fallos" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Asistencia comercial" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Ten en uso %s do total dispoñíbel de %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Obteña os aplicativos para sincronizar os seus ficheiros" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Amosar o axudante da primeira execución outra vez" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Contrasinal" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "O seu contrasinal foi cambiado" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Non é posíbel cambiar o seu contrasinal" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Contrasinal actual" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Novo contrasinal" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Cambiar o contrasinal" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Amosar o nome" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Correo" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "O seu enderezo de correo" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Escriba un enderezo de correo para activar a recuperación do contrasinal" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Idioma" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Axude na tradución" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Nome de acceso" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Crear" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Almacenamento predeterminado" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Sen límites" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Outro" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Almacenamento" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "cambiar o nome visíbel" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "estabelecer un novo contrasinal" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Predeterminado" +msgstr "" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 44b41641e2..28e8021e08 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012-2013. -# , 2013. -# , 2012. -# Miguel Anxo Bouzada , 2013. -# Miguel Branco, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -24,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Non foi posíbel eliminar a configuración do servidor" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "A configuración é correcta e pode estabelecerse a conexión." +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "A configuración é correcta, mais a ligazón non. Comprobe a configuración do servidor e as credenciais." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "A configuración non é correcta. Vexa o rexistro de ownCloud para máis detalles" +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Fallou o borrado" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Tomar os recentes axustes de configuración do servidor?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Manter os axustes?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Non é posíbel engadir a configuración do servidor" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "A proba de conexión foi satisfactoria" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "A proba de conexión fracasou" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Confirma que quere eliminar a configuración actual do servidor?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Confirmar a eliminación" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth son incompatíbeis. Pode acontecer un comportamento estraño. Consulte co administrador do sistema para desactivar un deles." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Aviso: O módulo PHP LDAP non está instalado, o servidor non funcionará. Consulte co administrador do sistema para instalalo." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Configuración do servidor" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Engadir a configuración do servidor" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Servidor" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Pode omitir o protocolo agás que precise de SSL. Nese caso comece con ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN base" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Un DN base por liña" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzado»" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN do usuario" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "O DN do cliente do usuario co que hai que estabelecer unha conexión, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso anónimo deixe o DN e o contrasinal baleiros." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Contrasinal" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Para o acceso anónimo deixe o DN e o contrasinal baleiros." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtro de acceso de usuarios" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Define o filtro que se aplica cando se intenta o acceso. %%uid substitúe o nome de usuario e a acción de acceso." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "usar a marca de posición %%uid, p.ex «uid=%%uid»" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Filtro da lista de usuarios" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Define o filtro a aplicar cando se recompilan os usuarios." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "sen ningunha marca de posición, como p.ex «objectClass=persoa»." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filtro de grupo" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Define o filtro a aplicar cando se recompilan os grupos." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "sen ningunha marca de posición, como p.ex «objectClass=grupoPosix»." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Axustes da conexión" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Configuración activa" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Se está sen marcar, omítese esta configuración." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Porto" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Servidor da copia de seguranza (Réplica)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Indicar un servidor de copia de seguranza opcional. Debe ser unha réplica do servidor principal LDAP/AD." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Porto da copia de seguranza (Réplica)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Desactivar o servidor principal" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Cando está activado, ownCloud só se conectará ao servidor de réplica." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Usar TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Non utilizalo ademais para conexións LDAPS xa que fallará." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor LDAP que non distingue entre maiúsculas e minúsculas (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Desactiva a validación do certificado SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Se a conexión só funciona con esta opción importe o certificado SSL do servidor LDAP no seu servidor ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Non se recomenda. Só para probas." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Tempo de persistencia da caché" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "en segundos. Calquera cambio baleira a caché." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Axustes do directorio" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Campo de mostra do nome de usuario" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "O atributo LDAP a empregar para xerar o nome de usuario de ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Base da árbore de usuarios" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Un DN base de usuario por liña" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Atributos de busca do usuario" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Opcional; un atributo por liña" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Campo de mostra do nome de grupo" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "O atributo LDAP úsase para xerar os nomes dos grupos de ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Base da árbore de grupo" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Un DN base de grupo por liña" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atributos de busca do grupo" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Asociación de grupos e membros" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Atributos especiais" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Campo de cota" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Cota predeterminada" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "en bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Campo do correo" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Regra de nomeado do cartafol do usuario" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Deixar baleiro para o nome de usuario (predeterminado). Noutro caso, especifique un atributo LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Probar a configuración" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Axuda" +msgstr "" diff --git a/l10n/he/core.po b/l10n/he/core.po index 2b44eac597..42c572dbda 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dovix Dovix , 2012 -# Gilad Naaman , 2013 -# idop , 2012 -# Tomer Cohen , 2011 -# Yaron Shahrabani , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -25,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "המשתמש %s שיתף אתך קובץ" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "המשתמש %s שיתף אתך תיקייה" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "המשתמש %s שיתף אתך את הקובץ „%s“. ניתן להוריד את הקובץ מכאן: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "המשתמש %s שיתף אתך את התיקייה „%s“. ניתן להוריד את התיקייה מכאן: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "סוג הקטגוריה לא סופק." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "אין קטגוריה להוספה?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "הקטגוריה הבאה כבר קיימת: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "סוג הפריט לא סופק." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "מזהה %s לא סופק." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "אירעה שגיאה בעת הוספת %s למועדפים." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "לא נבחרו קטגוריות למחיקה" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "שגיאה בהסרת %s מהמועדפים." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "יום ראשון" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "יום שני" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "יום שלישי" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "יום רביעי" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "יום חמישי" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "יום שישי" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "שבת" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "ינואר" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "פברואר" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "מרץ" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "אפריל" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "מאי" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "יוני" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "יולי" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "אוגוסט" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "ספטמבר" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "אוקטובר" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "נובמבר" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "דצמבר" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "הגדרות" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "שניות" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "לפני דקה אחת" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "לפני {minutes} דקות" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "לפני שעה" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "לפני {hours} שעות" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "היום" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "אתמול" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "לפני {days} ימים" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "חודש שעבר" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "לפני {months} חודשים" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "חודשים" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "שנה שעברה" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "שנים" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "בסדר" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "ביטול" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "בחירה" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "כן" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "לא" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "סוג הפריט לא צוין." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -248,236 +243,236 @@ msgstr "סוג הפריט לא צוין." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "שגיאה" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "שם היישום לא צוין." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "הקובץ הנדרש {file} אינו מותקן!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "שותף" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "שתף" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "שגיאה במהלך השיתוף" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "שגיאה במהלך ביטול השיתוף" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "שגיאה במהלך שינוי ההגדרות" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "שותף אתך ועם הקבוצה {group} שבבעלות {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "שותף אתך על ידי {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "שיתוף עם" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "שיתוף עם קישור" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "הגנה בססמה" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "ססמה" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "שליחת קישור בדוא״ל למשתמש" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "שליחה" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "הגדרת תאריך תפוגה" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "תאריך התפוגה" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "שיתוף באמצעות דוא״ל:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "לא נמצאו אנשים" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "אסור לעשות שיתוף מחדש" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "שותף תחת {item} עם {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "הסר שיתוף" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "ניתן לערוך" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "בקרת גישה" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "יצירה" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "עדכון" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "מחיקה" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "שיתוף" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "מוגן בססמה" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "אירעה שגיאה בביטול תאריך התפוגה" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "מתבצעת שליחה ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "הודעת הדוא״ל נשלחה" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "תהליך העדכון לא הושלם בהצלחה. נא דווח את הבעיה בקהילת ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "איפוס הססמה של ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "איפוס שליחת דוא״ל." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "הבקשה נכשלה!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "שם משתמש" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "בקשת איפוס" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "הססמה שלך אופסה" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "לדף הכניסה" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "ססמה חדשה" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "איפוס ססמה" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "אישי" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "משתמשים" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "יישומים" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "מנהל" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "עזרה" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "הגישה נחסמה" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "ענן לא נמצא" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "עריכת הקטגוריות" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "הוספה" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "אזהרת אבטחה" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -491,120 +486,120 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "אין מחולל מספרים אקראיים מאובטח, נא להפעיל את ההרחבה OpenSSL ב־PHP." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "ללא מחולל מספרים אקראיים מאובטח תוקף יכול לנבא את מחרוזות איפוס הססמה ולהשתלט על החשבון שלך." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "תיקיית וקבצי המידע שלך כנראה נגישים מהאינטרנט מכיוון שקובץ ה.htaccess לא עובד." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "לקבלת מידע להגדרה נכונה של השרת שלך, ראה את התיעוד." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "יצירת חשבון מנהל" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "מתקדם" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "תיקיית נתונים" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "הגדרת מסד הנתונים" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "ינוצלו" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "שם משתמש במסד הנתונים" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "ססמת מסד הנתונים" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "שם מסד הנתונים" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "מרחב הכתובות של מסד הנתונים" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "שרת בסיס נתונים" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "סיום התקנה" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "שירותי רשת בשליטתך" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "התנתקות" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "בקשת הכניסה האוטומטית נדחתה!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "אם לא שינית את ססמתך לאחרונה, יתכן שחשבונך נפגע!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "נא לשנות את הססמה שלך כדי לאבטח את חשבונך מחדש." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "שכחת את ססמתך?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "שמירת הססמה" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "כניסה" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "כניסות אלטרנטיביות" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "הקודם" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "הבא" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "מעדכן את ownCloud אל גרסא %s, זה עלול לקחת זמן מה." +msgstr "" diff --git a/l10n/he/files.po b/l10n/he/files.po index d0223a3352..c94ac0f9be 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dovix Dovix , 2012 -# idop , 2012 -# Tomer Cohen , 2011 -# Yaron Shahrabani , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -37,38 +33,38 @@ msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "לא הועלה קובץ. טעות בלתי מזוהה." +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "הקובץ שהועלה הועלה בצורה חלקית" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "לא הועלו קבצים" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "תיקייה זמנית חסרה" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "הכתיבה לכונן נכשלה" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -80,51 +76,51 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "קבצים" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "שתף" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "מחק לצמיתות" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "מחיקה" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "שינוי שם" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "ממתין" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} כבר קיים" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "החלפה" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "הצעת שם" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "ביטול" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} הוחלף ב־{old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "ביטול" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -132,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "קובץ אחד נשלח" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -150,7 +146,7 @@ msgstr "" msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -168,7 +164,7 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -176,16 +172,16 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "ההעלאה בוטלה." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "קישור אינו יכול להיות ריק." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -193,87 +189,87 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "שגיאה" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "שם" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "גודל" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "זמן שינוי" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "תיקייה אחת" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} תיקיות" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "קובץ אחד" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} קבצים" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "העלאה" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "טיפול בקבצים" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "גודל העלאה מקסימלי" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "המרבי האפשרי: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "נחוץ להורדה של ריבוי קבצים או תיקיות." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "הפעלת הורדת ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 - ללא הגבלה" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "גודל הקלט המרבי לקובצי ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "שמירה" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "חדש" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "קובץ טקסט" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "תיקייה" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "מקישור" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -281,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "ביטול ההעלאה" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -289,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "הורדה" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "הסר שיתוף" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "העלאה גדולה מידי" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "הקבצים נסרקים, נא להמתין." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "הסריקה הנוכחית" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index 538cffbef3..a98aea49b5 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Gilad Naaman , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "הצפנה" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "כלום" +msgstr "" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 7d4d083fe0..67e7b70ed7 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Tomer Cohen , 2012 -# Yaron Shahrabani , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -21,23 +19,23 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "הוענקה גישה" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "הענקת גישה" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "נא לספק קוד יישום וסוד תקניים של Dropbox." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Google Drive" +msgstr "" #: lib/config.php:431 msgid "" @@ -61,11 +59,11 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "אחסון חיצוני" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "שם התיקייה" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -73,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "הגדרות" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "אפשרויות" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "ניתן ליישום" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -89,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "לא הוגדרה" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "כל המשתמשים" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "קבוצות" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "משתמשים" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "מחיקה" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "הפעלת אחסון חיצוני למשתמשים" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "שורש אישורי אבטחת SSL " +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "ייבוא אישור אבטחת שורש" +msgstr "" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index a559adcb01..7e964bc30a 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Tomer Cohen , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "ססמה" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "שליחה" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s שיתף עמך את התיקייה %s" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s שיתף עמך את הקובץ %s" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "הורדה" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "אין תצוגה מקדימה זמינה עבור" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "שירותי רשת תחת השליטה שלך" +msgstr "" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 40c11b0596..45dfa40ab9 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Gilad Naaman , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -21,64 +20,64 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "בלתי אפשרי למחוק את %s לצמיתות" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "בלתי אפשרי לשחזר את %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "בצע פעולת שחזור" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "שגיאה" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "מחק קובץ לצמיתות" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "מחק לצמיתות" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "שם" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "נמחק" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "תיקייה אחת" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} תיקיות" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "קובץ אחד" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} קבצים" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "שום דבר כאן. סל המחזור שלך ריק!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "שחזר" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "מחיקה" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index d3d2624d33..fbf9a52a1d 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Tomer Cohen , 2012. -# Yaron Shahrabani , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 9cc939954e..19ae8227b8 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Tomer Cohen , 2012 -# Yaron Shahrabani , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -21,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "עזרה" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "אישי" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "הגדרות" +msgstr "" #: app.php:385 msgid "Users" -msgstr "משתמשים" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "יישומים" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "מנהל" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "הורדת ZIP כבויה" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "יש להוריד את הקבצים אחד אחרי השני." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "חזרה לקבצים" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -65,27 +63,27 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "יישומים אינם מופעלים" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "שגיאת הזדהות" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "פג תוקף. נא לטעון שוב את הדף." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "קבצים" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "טקסט" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "תמונות" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -115,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "שניות" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "לפני דקה אחת" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "לפני %d דקות" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "לפני שעה" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "לפני %d שעות" +msgstr "" #: template.php:118 msgid "today" -msgstr "היום" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "אתמול" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "לפני %d ימים" +msgstr "" #: template.php:121 msgid "last month" -msgstr "חודש שעבר" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "לפני %d חודשים" +msgstr "" #: template.php:123 msgid "last year" -msgstr "שנה שעברה" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "שנים" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s זמין. קבלת מידע נוסף" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "עדכני" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "בדיקת עדכונים מנוטרלת" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "לא ניתן למצוא את הקטגוריה „%s“" +msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 078b2eefa6..8e75692068 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Gilad Naaman , 2012 -# idop , 2012 -# Tomer Cohen , 2011 -# Yaron Shahrabani , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -23,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "לא ניתן לטעון רשימה מה־App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "שגיאת הזדהות" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -40,53 +36,53 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "הקבוצה כבר קיימת" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "לא ניתן להוסיף קבוצה" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "לא ניתן להפעיל את היישום" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "הדוא״ל נשמר" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "דוא״ל לא חוקי" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "לא ניתן למחוק את הקבוצה" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "לא ניתן למחוק את המשתמש" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "שפה השתנתה" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "בקשה לא חוקית" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "מנהלים לא יכולים להסיר את עצמם מקבוצת המנהלים" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "לא ניתן להוסיף משתמש לקבוצה %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "לא ניתן להסיר משתמש מהקבוצה %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -98,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "בטל" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "הפעל" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -110,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "שגיאה" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -126,7 +122,7 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "שומר.." +msgstr "" #: js/users.js:43 msgid "deleted" @@ -134,7 +130,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "ביטול" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -143,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "קבוצות" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "מנהל הקבוצה" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "מחיקה" +msgstr "" #: js/users.js:262 msgid "add group" @@ -171,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "עברית" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "אזהרת אבטחה" +msgstr "" #: templates/admin.php:18 msgid "" @@ -184,7 +180,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "יתכן שתיקיית הנתונים והקבצים שלך נגישים דרך האינטרנט. קובץ ה־‎.htaccess שמסופק על ידי ownCloud כנראה אינו עובד. אנו ממליצים בחום להגדיר את שרת האינטרנט שלך בדרך שבה תיקיית הנתונים לא תהיה זמינה עוד או להעביר את תיקיית הנתונים מחוץ לספריית העל של שרת האינטרנט." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" @@ -322,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "יותר" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "פחות" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "גרסא" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -340,47 +336,47 @@ msgid "" "licensed under the AGPL." -msgstr "פותח על די קהילתownCloud, קוד המקור מוגן ברישיון AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "הוספת היישום שלך" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "יישומים נוספים" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "בחירת יישום" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "צפה בעמוד הישום ב apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "ברישיון לטובת " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "עדכון" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "תיעוד משתמש" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "תיעוד מנהלים" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "תיעוד מקוון" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "פורום" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" @@ -388,16 +384,16 @@ msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "תמיכה בתשלום" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "השתמשת ב־%s מתוך %s הזמינים לך" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "השג את האפליקציות על מנת לסנכרן את הקבצים שלך" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" @@ -405,27 +401,27 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "ססמה" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "הססמה שלך הוחלפה" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "לא ניתן לשנות את הססמה שלך" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "ססמה נוכחית" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "ססמה חדשה" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "שינוי ססמה" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -433,23 +429,23 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "דוא״ל" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "כתובת הדוא״ל שלך" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "פה" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "עזרה בתרגום" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -457,7 +453,7 @@ msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים." +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" @@ -465,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "יצירה" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -477,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "אחר" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index c2c294c997..8e6baac2cf 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Gilad Naaman , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -40,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "מחיקה נכשלה" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -93,7 +92,7 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "מארח" +msgstr "" #: templates/settings.php:38 msgid "" @@ -114,7 +113,7 @@ msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN משתמש" +msgstr "" #: templates/settings.php:45 msgid "" @@ -125,15 +124,15 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "סיסמא" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "לגישה אנונימית, השאר את הDM והסיסמא ריקים." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "סנן כניסת משתמש" +msgstr "" #: templates/settings.php:53 #, php-format @@ -149,7 +148,7 @@ msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "סנן רשימת משתמשים" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." @@ -161,7 +160,7 @@ msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "סנן קבוצה" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." @@ -185,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "פורט" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -241,7 +240,7 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "בשניות. שינוי מרוקן את המטמון." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" @@ -309,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "בבתים" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -331,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "עזרה" +msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index b352ad1288..b5448b824f 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Omkar Tapale , 2012. -# Sanjay Rabidas , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -160,7 +158,7 @@ msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "सेटिंग्स" +msgstr "" #: js/js.js:718 msgid "seconds ago" @@ -295,9 +293,9 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "पासवर्ड" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -396,11 +394,11 @@ msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "आगे दिये गये लिंक का उपयोग पासवर्ड बदलने के लिये किजीये: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -411,9 +409,9 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" -msgstr "प्रयोक्ता का नाम" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" @@ -421,7 +419,7 @@ msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "आपका पासवर्ड बदला गया है" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -429,7 +427,7 @@ msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "नया पासवर्ड" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" @@ -437,15 +435,15 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "यक्तिगत" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "उपयोगकर्ता" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Apps" +msgstr "" #: strings.php:8 msgid "Admin" @@ -453,7 +451,7 @@ msgstr "" #: strings.php:9 msgid "Help" -msgstr "सहयोग" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" @@ -461,7 +459,7 @@ msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "क्लौड नहीं मिला " +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -511,49 +509,49 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "व्यवस्थापक खाता बनाएँ" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "उन्नत" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "डाटा फोल्डर" +msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" -msgstr "डेटाबेस कॉन्फ़िगर करें " +msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" -msgstr "उपयोग होगा" +msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" -msgstr "डेटाबेस उपयोगकर्ता" +msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" -msgstr "डेटाबेस पासवर्ड" +msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" -msgstr "डेटाबेस का नाम" +msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" -msgstr "सेटअप समाप्त करे" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" @@ -561,45 +559,45 @@ msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "लोग आउट" +msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" -msgstr "याद रखें" +msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "पिछला" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "अगला" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 0e6c151453..e2c6db13a0 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 429b94708d..1c0263d2b3 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index 1dcca569c5..a1ab04074e 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -99,7 +99,7 @@ msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "उपयोगकर्ता" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 1691691d5d..d80e914c47 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index dccfd5206e..ad93e8681d 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index 48dc088aa1..66568383a7 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index d7d72d96af..d7dd4b1eae 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -19,23 +19,23 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "सहयोग" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "यक्तिगत" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "सेटिंग्स" +msgstr "" #: app.php:385 msgid "Users" -msgstr "उपयोगकर्ता" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Apps" +msgstr "" #: app.php:406 msgid "Admin" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 4c627dfabc..244ced36fe 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -401,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "पासवर्ड" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -417,7 +417,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "नया पासवर्ड" +msgstr "" #: templates/personal.php:44 msgid "Change password" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 7ed6220d5f..b52e08d84e 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "सहयोग" +msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 1061fc3276..2eb4376d59 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Davor Kustec , 2011, 2012 -# Domagoj Delimar , 2012 -# fposavec , 2012 -# Thomas Silađi , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -51,7 +47,7 @@ msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Nemate kategorija koje možete dodati?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -77,7 +73,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Nema odabranih kategorija za brisanje." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -86,87 +82,87 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "nedelja" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "ponedeljak" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "utorak" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "srijeda" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "četvrtak" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "petak" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "subota" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Siječanj" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Veljača" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Ožujak" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Travanj" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Svibanj" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Lipanj" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Srpanj" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Kolovoz" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Rujan" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Listopad" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Studeni" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Prosinac" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Postavke" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sekundi prije" +msgstr "" #: js/js.js:719 msgid "1 minute ago" @@ -186,11 +182,11 @@ msgstr "" #: js/js.js:723 msgid "today" -msgstr "danas" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "jučer" +msgstr "" #: js/js.js:725 msgid "{days} days ago" @@ -198,7 +194,7 @@ msgstr "" #: js/js.js:726 msgid "last month" -msgstr "prošli mjesec" +msgstr "" #: js/js.js:727 msgid "{months} months ago" @@ -206,35 +202,35 @@ msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "mjeseci" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "prošlu godinu" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "godina" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "U redu" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Odustani" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Izaberi" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Da" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Ne" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -247,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Pogreška" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -263,19 +259,19 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Podijeli" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Greška prilikom djeljenja" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Greška prilikom isključivanja djeljenja" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Greška prilikom promjena prava" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" @@ -287,19 +283,19 @@ msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Djeli sa" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Djeli preko link-a" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Zaštiti lozinkom" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Lozinka" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -311,23 +307,23 @@ msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Postavi datum isteka" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Datum isteka" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Dijeli preko email-a:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Osobe nisu pronađene" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Ponovo dijeljenje nije dopušteno" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" @@ -335,43 +331,43 @@ msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Makni djeljenje" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "može mjenjat" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "kontrola pristupa" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "kreiraj" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "ažuriraj" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "izbriši" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "djeli" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Zaštita lozinkom" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Greška prilikom brisanja datuma isteka" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Greška prilikom postavljanja datuma isteka" +msgstr "" #: js/share.js:604 msgid "Sending ..." @@ -394,15 +390,15 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud resetiranje lozinke" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Koristite ovaj link da biste poništili lozinku: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Primit ćete link kako biste poništili zaporku putem e-maila." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -415,63 +411,63 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Korisničko ime" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Zahtjev za resetiranjem" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Vaša lozinka je resetirana" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Idi na stranicu za prijavu" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nova lozinka" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Poništavanje lozinke" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Osobno" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Korisnici" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplikacije" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administrator" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Pomoć" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Pristup zabranjen" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud nije pronađen" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Uredi kategorije" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Dodaj" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -513,57 +509,57 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Stvori administratorski račun" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Dodatno" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Mapa baze podataka" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Konfiguriraj bazu podataka" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "će se koristiti" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Korisnik baze podataka" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Lozinka baze podataka" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Ime baze podataka" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Database tablespace" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Poslužitelj baze podataka" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Završi postavljanje" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "web usluge pod vašom kontrolom" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Odjava" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" @@ -581,15 +577,15 @@ msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Izgubili ste lozinku?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "zapamtiti" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Prijava" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -597,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "prethodan" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "sljedeći" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 87b64c8462..bf94c02d15 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Davor Kustec , 2011, 2012 -# fposavec , 2012 -# Thomas Silađi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -40,7 +37,7 @@ msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Datoteka je poslana uspješno i bez pogrešaka" +msgstr "" #: ajax/upload.php:27 msgid "" @@ -51,23 +48,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Datoteka je poslana samo djelomično" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Ni jedna datoteka nije poslana" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Nedostaje privremena mapa" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Neuspjelo pisanje na disk" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -79,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Datoteke" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Podijeli" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -91,15 +88,15 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Briši" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Promjeni ime" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "U tijeku" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" @@ -107,15 +104,15 @@ msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "zamjeni" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "predloži ime" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "odustani" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" @@ -123,7 +120,7 @@ msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "vrati" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -131,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 datoteka se učitava" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -167,7 +164,7 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -175,12 +172,12 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Slanje poništeno." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." @@ -192,19 +189,19 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Greška" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Naziv" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Veličina" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Zadnja promjena" +msgstr "" #: js/files.js:893 msgid "1 folder" @@ -224,51 +221,51 @@ msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Pošalji" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "datoteka za rukovanje" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksimalna veličina prijenosa" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maksimalna moguća: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Potrebno za preuzimanje više datoteke i mape" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Omogući ZIP-preuzimanje" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 je \"bez limita\"" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maksimalna veličina za ZIP datoteke" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Snimi" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "novo" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "tekstualna datoteka" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "mapa" +msgstr "" #: templates/index.php:14 msgid "From link" @@ -280,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Prekini upload" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -288,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Preuzmi" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Prekini djeljenje" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Prijenos je preobiman" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Datoteke se skeniraju, molimo pričekajte." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Trenutno skeniranje" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index a4e8af9c56..ba59607422 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 6cd18b32ca..8a28f043f9 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -95,16 +95,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupe" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Korisnici" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Obriši" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index f3d4834e76..428898dc67 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 152f07f368..5be378ca9d 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Greška" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Ime" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Obriši" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 12e83d69fb..6004430d18 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index fa043de4d8..f0d4cc2457 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -19,19 +19,19 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Pomoć" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Osobno" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Postavke" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Korisnici" +msgstr "" #: app.php:398 msgid "Apps" @@ -39,7 +39,7 @@ msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administrator" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." @@ -67,7 +67,7 @@ msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Greška kod autorizacije" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,11 +75,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Datoteke" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Tekst" +msgstr "" #: search/provider/file.php:29 msgid "Images" @@ -113,79 +113,79 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sekundi prije" +msgstr "" #: template.php:114 msgid "1 minute ago" @@ -207,11 +207,11 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "danas" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "jučer" +msgstr "" #: template.php:120 #, php-format @@ -220,7 +220,7 @@ msgstr "" #: template.php:121 msgid "last month" -msgstr "prošli mjesec" +msgstr "" #: template.php:122 #, php-format @@ -229,11 +229,11 @@ msgstr "" #: template.php:123 msgid "last year" -msgstr "prošlu godinu" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "godina" +msgstr "" #: updater.php:78 #, php-format diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 7bbcfc37cc..ba5e8ba7f2 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Davor Kustec , 2011, 2012 -# fposavec , 2012 -# Thomas Silađi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -22,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Nemogićnost učitavanja liste sa Apps Stora" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Greška kod autorizacije" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -51,11 +48,11 @@ msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email spremljen" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Neispravan email" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -67,11 +64,11 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Jezik promijenjen" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Neispravan zahtjev" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -97,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Isključi" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Uključi" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -109,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Greška" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -125,15 +122,15 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Spremanje..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "izbrisano" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "vrati" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -142,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupe" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupa Admin" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Obriši" +msgstr "" #: js/users.js:262 msgid "add group" @@ -170,7 +167,7 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__ime_jezika__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" @@ -343,7 +340,7 @@ msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Dodajte vašu aplikaciju" +msgstr "" #: templates/apps.php:12 msgid "More Apps" @@ -351,11 +348,11 @@ msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Odaberite Aplikaciju" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Pogledajte stranicu s aplikacijama na apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " @@ -404,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Lozinka" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -412,19 +409,19 @@ msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Nemoguće promijeniti lozinku" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Trenutna lozinka" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nova lozinka" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Izmjena lozinke" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -432,23 +429,23 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "e-mail adresa" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Vaša e-mail adresa" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Jezik" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Pomoć prevesti" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -464,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Izradi" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -476,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "ostali" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 5f2540a610..769e6e2299 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Pomoć" +msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index f8d6e14a06..f53cfb0e20 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Toth , 2012 -# Laszlo Tornoci , 2013 -# Tamas Nagy , 2011 -# Peter Borsa , 2012 -# Tamas Nagy , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -25,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "%s felhasználó megosztott Önnel egy fájlt" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "%s felhasználó megosztott Önnel egy mappát" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "%s felhasználó megosztotta ezt az állományt Önnel: %s. A fájl innen tölthető le: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthető le: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Nincs megadva a kategória típusa." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Nincs hozzáadandó kategória?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Ez a kategória már létezik: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Az objektum típusa nincs megadva." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID nincs megadva." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Nem sikerült a kedvencekhez adni ezt: %s" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Nincs törlésre jelölt kategória" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Nem sikerült a kedvencekből törölni ezt: %s" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "vasárnap" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "hétfő" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "kedd" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "szerda" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "csütörtök" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "péntek" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "szombat" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "január" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "február" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "március" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "április" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "május" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "június" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "július" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "augusztus" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "szeptember" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "október" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "november" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "december" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Beállítások" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "pár másodperce" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 perce" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} perce" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 órája" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} órája" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "ma" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "tegnap" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} napja" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "múlt hónapban" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} hónapja" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "több hónapja" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "tavaly" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "több éve" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Mégse" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Válasszon" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Igen" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nem" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Az objektum típusa nincs megadva." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -248,363 +243,363 @@ msgstr "Az objektum típusa nincs megadva." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Hiba" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Az alkalmazás neve nincs megadva." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "A szükséges fájl: {file} nincs telepítve!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Megosztott" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Megosztás" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Nem sikerült létrehozni a megosztást" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Nem sikerült visszavonni a megosztást" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Nem sikerült módosítani a jogosultságokat" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Megosztotta Önnel és a(z) {group} csoporttal: {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Megosztotta Önnel: {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Kivel osztom meg" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Link megadásával osztom meg" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Jelszóval is védem" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Jelszó" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Email címre küldjük el" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Küldjük el" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Legyen lejárati idő" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "A lejárati idő" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Megosztás emaillel:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Nincs találat" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Megosztva {item}-ben {user}-rel" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "A megosztás visszavonása" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "módosíthat" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "jogosultság" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "létrehoz" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "szerkeszt" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "töröl" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "megoszt" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Jelszóval van védve" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Nem sikerült a lejárati időt törölni" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Nem sikerült a lejárati időt beállítani" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Küldés ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Az emailt elküldtük" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "A frissítés nem sikerült. Kérem értesítse erről a problémáról az ownCloud közösséget." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud jelszó-visszaállítás" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Használja ezt a linket a jelszó ismételt beállításához: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Elküldtük az emailt a jelszó ismételt beállításához." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Nem sikerült a kérést teljesíteni!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Felhasználónév" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Visszaállítás igénylése" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Jelszó megváltoztatva" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "A bejelentkező ablakhoz" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Új jelszó" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Jelszó-visszaállítás" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Személyes" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Felhasználók" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Alkalmazások" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Adminisztráció" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Súgó" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "A hozzáférés nem engedélyezett" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "A felhő nem található" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Kategóriák szerkesztése" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Hozzáadás" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Biztonsági figyelmeztetés" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Kérjük frissítse a telepített PHP csomagjait, hogy biztonságos legyen az ownCloud szolgáltatása." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Nem érhető el megfelelő véletlenszám-generátor, telepíteni kellene a PHP OpenSSL kiegészítését." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Megfelelő véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállító tokent, és Ön helyett belépni." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Az adatkönyvtár és a benne levő állományok valószínűleg közvetlenül is elérhetők az internetről, mert a .htaccess állomány nem érvényesül." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "A kiszolgáló megfelelő beállításához kérjük olvassa el a dokumentációt." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Rendszergazdai belépés létrehozása" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Haladó" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Adatkönyvtár" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Adatbázis konfigurálása" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "adatbázist fogunk használni" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Adatbázis felhasználónév" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Adatbázis jelszó" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Az adatbázis neve" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Az adatbázis táblázattér (tablespace)" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Adatbázis szerver" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "A beállítások befejezése" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "webszolgáltatások saját kézben" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Kilépés" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Az automatikus bejelentkezés sikertelen!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy idegenek jutottak be a rendszerbe az Ön nevében!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "A biztonsága érdekében változtassa meg a jelszavát!" +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Elfelejtette a jelszavát?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "emlékezzen" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Bejelentkezés" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternatív bejelentkezés" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "előző" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "következő" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet." +msgstr "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 6b63e8382a..a7ca915486 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Toth , 2012 -# akoscomp , 2013 -# gyeben , 2013 -# gyeben , 2013 -# Laszlo Tornoci , 2013 -# Tamas Nagy , 2011 -# Peter Borsa , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -27,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Nem sikerült %s áthelyezése" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Nem lehet átnevezni a fájlt" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Nem történt feltöltés. Ismeretlen hiba" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "A fájlt sikerült feltölteni" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Az eredeti fájlt csak részben sikerült feltölteni." +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Nem töltődött fel semmi" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Hiányzik egy ideiglenes mappa" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Nem sikerült a lemezre történő írás" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Nincs elég szabad hely." +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Érvénytelen mappa." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Fájlok" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Megosztás" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Végleges törlés" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Törlés" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Átnevezés" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Folyamatban" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} már létezik" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "írjuk fölül" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "legyen más neve" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "mégse" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "visszavonás" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "a törlés végrehajtása" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 fájl töltődik föl" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "fájl töltődik föl" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' fájlnév érvénytelen." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "A fájlnév nem lehet semmi." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhatóak a jövőben." +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "A tároló majdnem tele van ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Nincs elég szabad hely" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "A feltöltést megszakítottuk." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Az URL nem lehet semmi." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Hiba" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Név" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Méret" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Módosítva" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 mappa" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} mappa" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 fájl" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} fájl" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Feltöltés" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Fájlkezelés" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximális feltölthető fájlméret" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max. lehetséges: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Kötegelt fájl- vagy mappaletöltéshez szükséges" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "A ZIP-letöltés engedélyezése" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 = korlátlan" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP-fájlok maximális kiindulási mérete" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Mentés" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Új" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Szövegfájl" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Mappa" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Feltöltés linkről" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Törölt fájlok" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "A feltöltés megszakítása" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Itt nincs írásjoga." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Itt nincs semmi. Töltsön fel valamit!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Letöltés" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Megosztás visszavonása" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "A feltöltés túl nagy" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Ellenőrzés alatt" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "A fájlrendszer gyorsítótárának frissítése zajlik..." +msgstr "" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 4bf863c88d..ca446575c3 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Akos , 2013. -# Csaba Orban , 2012. -# , 2013. -# Laszlo Tornoci , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -23,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Titkosítás" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Az állományok titkosítása be van kapcsolva." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "A következő fájltípusok nem kerülnek titkosításra:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Zárjuk ki a titkosításból a következő fájltípusokat:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Egyik sem" +msgstr "" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 6b80302758..843d3e51de 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -20,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Érvényes hozzáférés" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "A Dropbox tárolót nem sikerült beállítani" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Megadom a hozzáférést" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "A Google Drive tárolót nem sikerült beállítani" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Figyelem: a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." +msgstr "" #: lib/config.php:437 msgid "" @@ -60,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Külső tárolási szolgáltatások becsatolása" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Mappanév" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Külső tárolók" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Beállítások" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opciók" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Érvényességi kör" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Tároló becsatolása" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Nincs beállítva" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Az összes felhasználó" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Csoportok" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Felhasználók" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Törlés" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Külső tárolók engedélyezése a felhasználók részére" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Lehetővé teszi, hogy a felhasználók külső tárolási szolgáltatásokat csatoljanak be a saját területükre" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL tanúsítványok" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "SSL tanúsítványok importálása" +msgstr "" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 7897dc58ce..bd9ec84bd7 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Csaba Orban , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Jelszó" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Elküld" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s megosztotta Önnel ezt a mappát: %s" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s megosztotta Önnel ezt az állományt: %s" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Letöltés" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Nem áll rendelkezésre előnézet ehhez: " +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "webszolgáltatások saját kézben" +msgstr "" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index dafccd8911..1ff5e95414 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Akos , 2013. -# Laszlo Tornoci , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Nem sikerült %s végleges törlése" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Nem sikerült %s visszaállítása" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "a visszaállítás végrehajtása" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Hiba" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "az állomány végleges törlése" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Végleges törlés" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Név" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Törölve" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 mappa" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} mappa" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 fájl" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} fájl" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Itt nincs semmi. Az Ön szemetes mappája üres!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Visszaállítás" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Törlés" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Törölt fájlok" +msgstr "" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index ef316affe7..2343eac0f9 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Laszlo Tornoci , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -21,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Nem sikerült átállni a változatra: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "sikerült" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "%s állományt átállítottuk erre a változatra: %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "nem sikerült" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "%s állományt nem sikerült átállítani erre a változatra: %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Nincs régebbi változat" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Nincs megadva az útvonal" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Az állományok korábbi változatai" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Az állomány átállítható egy régebbi változatra, ha a gombra kattint" +msgstr "" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 811a4db402..ccde55851d 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Toth , 2012 -# gyeben , 2013 -# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -22,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Súgó" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Személyes" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Beállítások" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Felhasználók" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Alkalmazások" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Adminsztráció" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "A ZIP-letöltés nincs engedélyezve." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "A fájlokat egyenként kell letölteni." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Vissza a Fájlokhoz" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "nem határozható meg" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Az alkalmazás nincs engedélyezve" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Hitelesítési hiba" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "A token lejárt. Frissítse az oldalt." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Fájlok" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Szöveg" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Képek" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Állítson be egy jelszót az adminisztrációhoz." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s adja meg az adatbázist elérő felhasználó login nevét." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s adja meg az adatbázis nevét." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s az adatbázis neve nem tartalmazhat pontot" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s adja meg az adatbázist szolgáltató számítógép nevét." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "A PostgreSQL felhasználói név és/vagy jelszó érvénytelen" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia" +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "A MySQL felhasználói név és/vagy jelszó érvénytelen" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Adatbázis hiba: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "A hibát ez a parancs okozta: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "A '%s'@'localhost' MySQL felhasználó már létezik." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Törölje ezt a felhasználót a MySQL-ből" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "A '%s'@'%%' MySQL felhasználó már létezik" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Törölje ezt a felhasználót a MySQL-ből." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "másodperce" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 perce" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d perce" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 órája" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d órája" +msgstr "" #: template.php:118 msgid "today" -msgstr "ma" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "tegnap" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d napja" +msgstr "" #: template.php:121 msgid "last month" -msgstr "múlt hónapban" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d hónapja" +msgstr "" #: template.php:123 msgid "last year" -msgstr "tavaly" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "éve" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s elérhető. További információ." +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "a legfrissebb változat" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "A frissitések ellenőrzése nincs engedélyezve." +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Ez a kategória nem található: \"%s\"" +msgstr "" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 9f4635ef47..3041a62105 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Toth , 2012 -# gyeben , 2013 -# Laszlo Tornoci , 2013 -# Peter Borsa , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -23,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Nem tölthető le a lista az App Store-ból" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Azonosítási hiba" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -36,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Nem sikerült megváltoztatni a megjelenítési nevet" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "A csoport már létezik" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "A csoport nem hozható létre" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "A program nem aktiválható." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email mentve" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Hibás email" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "A csoport nem törölhető" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "A felhasználó nem törölhető" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "A nyelv megváltozott" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Érvénytelen kérés" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Adminisztrátorok nem távolíthatják el magukat az admin csoportból." +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "A felhasználó nem adható hozzá ehhez a csoporthoz: %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "A felhasználó nem távolítható el ebből a csoportból: %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "A program frissítése nem sikerült." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Frissítés erre a verzióra: {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Letiltás" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Engedélyezés" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Kérem várjon..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Hiba" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Frissítés folyamatban..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Hiba történt a programfrissítés közben" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Frissítve" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Mentés..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "törölve" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "visszavonás" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "A felhasználót nem sikerült eltávolítáni" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Csoportok" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Csoportadminisztrátor" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Törlés" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "csoport hozzáadása" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Érvényes felhasználónevet kell megadnia" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "A felhasználó nem hozható létre" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Érvényes jelszót kell megadnia" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Biztonsági figyelmeztetés" +msgstr "" #: templates/admin.php:18 msgid "" @@ -184,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár nem legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "A beállítással kapcsolatos figyelmeztetés" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "A 'fileinfo' modul hiányzik" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak az telepítése, ha az ember jó eredményt szeretne a MIME-típusok felismerésében." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "A nyelvi lokalizáció nem működik" +msgstr "" #: templates/admin.php:63 #, php-format @@ -221,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Az internet kapcsolat nem működik" +msgstr "" #: templates/admin.php:78 msgid "" @@ -235,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Az ownCloud kiszolgálónak nincs internet kapcsolata. Ez azt jelenti, hogy bizonyos dolgok nem fognak működni, pl. külső tárolók csatolása, programfrissítésekről való értesítések, vagy külső fejlesztői modulok telepítése. Lehet, hogy az állományok távolról történő elérése, ill. az email értesítések sem fog működni. Javasoljuk, hogy engedélyezze az internet kapcsolatot a kiszolgáló számára, ha az ownCloud összes szolgáltatását szeretné használni." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Ütemezett feladatok" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "A cron.php webcron szolgáltatásként van regisztrálva. Hívja meg az owncloud könyvtárban levő cron.php állományt http-n keresztül percenként egyszer." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "A rendszer cron szolgáltatásának használata. Hívja meg az owncloud könyvtárban levő cron.php állományt percenként egyszer a rendszer cron szolgáltatásának segítségével." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Megosztás" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "A megosztás API-jának engedélyezése" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Linkek engedélyezése" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "A továbbosztás engedélyezése" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "A felhasználók bárkivel megoszthatják állományaikat" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Biztonság" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Kötelező HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak az ownCloud szolgáltatáshoz." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Kérjük, hogy HTTPS protokollt használjon, ha be vagy ki akarja kapcsolni a kötelező SSL beállítást." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Naplózás" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Naplózási szint" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Több" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Kevesebb" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Verzió" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -340,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "A programot az ownCloud közösség fejleszti. A forráskód az AGPL feltételei mellett használható föl." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Az alkalmazás hozzáadása" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "További alkalmazások" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Válasszon egy alkalmazást" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Lásd apps.owncloud.com, alkalmazások oldal" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-a jogtuladonos " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Frissítés" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Felhasználói leírás" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Üzemeltetői leírás" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Online leírás" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Fórum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Hibabejelentések" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Megvásárolható támogatás" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Töltse le az állományok szinkronizációjához szükséges programokat" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Nézzük meg újra az első bejelentkezéskori segítséget!" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Jelszó" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "A jelszava megváltozott" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "A jelszó nem változtatható meg" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "A jelenlegi jelszó" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Az új jelszó" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "A jelszó megváltoztatása" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "A megjelenített név" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Az Ön email címe" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Nyelv" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Segítsen a fordításban!" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait." +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Bejelentkezési név" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Létrehozás" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Alapértelmezett tárhely" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Korlátlan" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Más" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Tárhely" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "a megjelenített név módosítása" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "új jelszó beállítása" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Alapértelmezett" +msgstr "" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 804a0fd48f..f1d73edc85 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Laszlo Tornoci , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -21,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Nem sikerült törölni a kiszolgáló konfigurációját" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "A konfiguráció érvényes, és a kapcsolat létrehozható!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "A konfiguráció érvényes, de a kapcsolat nem hozható létre. Kérem ellenőrizze a kiszolgáló beállításait, és az elérési adatokat." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Érvénytelen konfiguráció. További információkért nézze meg az ownCloud naplófájlját." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "A törlés nem sikerült" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Vegyük át a beállításokat az előző konfigurációból?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Tartsuk meg a beállításokat?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Az új kiszolgáló konfigurációja nem hozható létre" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "A kapcsolatellenőrzés eredménye: sikerült" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "A kapcsolatellenőrzés eredménye: nem sikerült" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Tényleg törölni szeretné a kiszolgáló beállításait?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "A törlés megerősítése" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Figyelmeztetés: Az LDAP PHP modul nincs telepítve, ezért ez az alrendszer nem fog működni. Kérje meg a rendszergazdát, hogy telepítse!" +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "A kiszolgálók beállításai" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Új kiszolgáló beállításának hozzáadása" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Kiszolgáló" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN-gyökér" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Soronként egy DN-gyökér" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasználók és a csoportok számára" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "A kapcsolódó felhasználó DN-je" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "Annak a felhasználónak a DN-je, akinek a nevében bejelentkezve kapcsolódunk a kiszolgálóhoz, pl. uid=agent,dc=example,dc=com. Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!" +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Jelszó" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!" +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Szűrő a bejelentkezéshez" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Ez a szűrő érvényes a bejelentkezés megkísérlésekor. Ekkor az %%uid változó helyére a bejelentkezési név kerül." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "használja az %%uid változót, pl. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "A felhasználók szűrője" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Ez a szűrő érvényes a felhasználók listázásakor." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "itt ne használjon változót, pl. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "A csoportok szűrője" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Ez a szűrő érvényes a csoportok listázásakor." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "itt ne használjunk változót, pl. \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Kapcsolati beállítások" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "A beállítás aktív" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Ha nincs kipipálva, ez a beállítás kihagyódik." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Másodkiszolgáló (replika)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Adjon meg egy opcionális másodkiszolgálót. Ez a fő LDAP/AD kiszolgáló szinkron másolata (replikája) kell legyen." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "A másodkiszolgáló (replika) portszáma" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "A fő szerver kihagyása" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Ha ezt bekapcsoljuk, akkor az ownCloud csak a másodszerverekhez kapcsolódik." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Használjunk TLS-t" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "LDAPS kapcsolatok esetén ne kapcsoljuk be, mert nem fog működni." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Az LDAP-kiszolgáló nem tesz különbséget a kis- és nagybetűk között (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Ne ellenőrizzük az SSL-tanúsítvány érvényességét" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Ha a kapcsolat csak ezzel a beállítással működik, akkor importálja az LDAP-kiszolgáló SSL tanúsítványát az ownCloud kiszolgálóra!" +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Nem javasolt, csak tesztelésre érdemes használni." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "A gyorsítótár tárolási időtartama" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "másodpercben. A változtatás törli a cache tartalmát." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Címtár beállítások" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "A felhasználónév mezője" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Ebből az LDAP attribútumból képződik a felhasználó elnevezése, ami megjelenik az ownCloudban." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "A felhasználói fa gyökere" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Soronként egy felhasználói fa gyökerét adhatjuk meg" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "A felhasználók lekérdezett attribútumai" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Nem kötelező megadni, soronként egy attribútum" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "A csoport nevének mezője" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Ebből az LDAP attribútumból képződik a csoport elnevezése, ami megjelenik az ownCloudban." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "A csoportfa gyökere" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Soronként egy csoportfa gyökerét adhatjuk meg" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "A csoportok lekérdezett attribútumai" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "A csoporttagság attribútuma" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Különleges attribútumok" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Kvóta mező" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Alapértelmezett kvóta" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "bájtban" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Email mező" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "A home könyvtár elérési útvonala" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Hagyja üresen, ha a felhasználónevet kívánja használni. Ellenkező esetben adjon meg egy LDAP/AD attribútumot!" +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "A beállítások tesztelése" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Súgó" +msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index e10d50215c..4cf63ca58d 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Emilio Sepúlveda , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -83,83 +82,83 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Dominica" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Lunedi" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Martedi" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Mercuridi" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Jovedi" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Venerdi" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sabbato" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "januario" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februario" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Martio" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "April" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mai" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Junio" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Julio" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Augusto" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Septembre" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Octobre" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Novembre" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Decembre" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Configurationes" +msgstr "" #: js/js.js:718 msgid "seconds ago" @@ -219,7 +218,7 @@ msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Cancellar" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" @@ -260,7 +259,7 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Compartir" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" @@ -296,7 +295,7 @@ msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Contrasigno" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -391,7 +390,7 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Reinitialisation del contrasigno de ownCLoud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -412,63 +411,63 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nomine de usator" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Requestar reinitialisation" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Tu contrasigno esseva reinitialisate" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "al pagina de initio de session" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nove contrasigno" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Reinitialisar contrasigno" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personal" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Usatores" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Applicationes" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administration" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Adjuta" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Accesso prohibite" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Nube non trovate" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Modificar categorias" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Adder" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -510,37 +509,37 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Crear un conto de administration" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avantiate" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Dossier de datos" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configurar le base de datos" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "essera usate" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Usator de base de datos" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Contrasigno de base de datos" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nomine de base de datos" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" @@ -548,7 +547,7 @@ msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Hospite de base de datos" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" @@ -556,11 +555,11 @@ msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "servicios web sub tu controlo" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Clauder le session" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" @@ -578,15 +577,15 @@ msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Tu perdeva le contrasigno?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "memora" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Aperir session" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -594,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "prev" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "prox" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 649ffec927..996aa29c8e 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Emilio Sepúlveda , 2011 -# Emilio Sepúlveda , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -54,15 +52,15 @@ msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Le file incargate solmente esseva incargate partialmente" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Nulle file esseva incargate" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Manca un dossier temporari" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" @@ -78,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Files" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Compartir" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -90,7 +88,7 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Deler" +msgstr "" #: js/fileactions.js:194 msgid "Rename" @@ -195,15 +193,15 @@ msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nomine" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Dimension" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modificate" +msgstr "" #: js/files.js:893 msgid "1 folder" @@ -223,7 +221,7 @@ msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Incargar" +msgstr "" #: templates/admin.php:5 msgid "File handling" @@ -231,7 +229,7 @@ msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Dimension maxime de incargamento" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " @@ -255,19 +253,19 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Salveguardar" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nove" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "File de texto" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Dossier" +msgstr "" #: templates/index.php:14 msgid "From link" @@ -287,11 +285,11 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Nihil hic. Incarga alcun cosa!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Discargar" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" @@ -299,7 +297,7 @@ msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Incargamento troppo longe" +msgstr "" #: templates/index.php:110 msgid "" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 075ccfc669..542eba1d2e 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index bd5a62c049..37fd4d663e 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -95,16 +95,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Gruppos" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Usatores" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Deler" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 2648b60d7a..882c96de3f 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 711ce68f35..c576590c0c 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nomine" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Deler" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index 236cc1eb79..7c02d48b46 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index ac00206559..f8c58dbd39 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,19 +19,19 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Adjuta" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personal" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Configurationes" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Usatores" +msgstr "" #: app.php:398 msgid "Apps" @@ -39,7 +39,7 @@ msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administration" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." @@ -75,11 +75,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Files" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Texto" +msgstr "" #: search/provider/file.php:29 msgid "Images" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index e659f428bd..f9a11ae0cb 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Emilio Sepúlveda , 2011 -# Emilio Sepúlveda , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -66,11 +64,11 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Linguage cambiate" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Requesta invalide" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -141,7 +139,7 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Gruppos" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" @@ -149,7 +147,7 @@ msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Deler" +msgstr "" #: js/users.js:262 msgid "add group" @@ -169,7 +167,7 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Interlingua" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" @@ -342,7 +340,7 @@ msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Adder tu application" +msgstr "" #: templates/apps.php:12 msgid "More Apps" @@ -350,7 +348,7 @@ msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Selectionar un app" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" @@ -362,7 +360,7 @@ msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Actualisar" +msgstr "" #: templates/help.php:4 msgid "User Documentation" @@ -395,7 +393,7 @@ msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Obtene le apps (applicationes) pro synchronizar tu files" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" @@ -403,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Contrasigno" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -411,19 +409,19 @@ msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Non pote cambiar tu contrasigno" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Contrasigno currente" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nove contrasigno" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Cambiar contrasigno" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -431,11 +429,11 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-posta" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Tu adresse de e-posta" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" @@ -443,11 +441,11 @@ msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Linguage" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Adjuta a traducer" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -463,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Crear" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -475,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Altere" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 5098a66b47..f1fd4adb3d 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Adjuta" +msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 4ef5eb6b2c..173e3d3c92 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# evanlimanto , 2013 -# elmakong , 2012 -# Muhammad Fauzan , 2012 -# Muhammad Panji , 2012 -# Muhammad Radifar , 2011 -# rodin , 2013 -# w41l , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -27,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "%s berbagi berkas dengan Anda" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "%s berbagi folder dengan Anda" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "%s berbagi berkas \"%s\" dengan Anda. Silakan unduh di sini: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "%s berbagi folder \"%s\" dengan Anda. Silakan unduh di sini: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Tipe kategori tidak diberikan." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Tidak ada kategori yang akan ditambahkan?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Kategori ini sudah ada: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Tipe objek tidak diberikan." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "ID %s tidak diberikan." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Galat ketika menambah %s ke favorit" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Tidak ada kategori terpilih untuk dihapus." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Galat ketika menghapus %s dari favorit" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Minggu" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Senin" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Selasa" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Rabu" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Kamis" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Jumat" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sabtu" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januari" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februari" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Maret" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "April" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mei" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Juni" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Juli" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Agustus" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Desember" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Setelan" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "beberapa detik yang lalu" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 menit yang lalu" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} menit yang lalu" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 jam yang lalu" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} jam yang lalu" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "hari ini" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "kemarin" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} hari yang lalu" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "bulan kemarin" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} bulan yang lalu" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "beberapa bulan lalu" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "tahun kemarin" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "beberapa tahun lalu" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Oke" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Batalkan" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Pilih" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ya" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Tidak" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Tipe objek tidak ditentukan." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -250,363 +243,363 @@ msgstr "Tipe objek tidak ditentukan." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Galat" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Nama aplikasi tidak ditentukan." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Berkas {file} yang dibutuhkan tidak terpasang!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Dibagikan" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Bagikan" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Galat ketika membagikan" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Galat ketika membatalkan pembagian" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Galat ketika mengubah izin" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Dibagikan dengan Anda dan grup {group} oleh {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Dibagikan dengan Anda oleh {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Bagikan dengan" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Bagikan lewat tautan" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Lindungi dengan sandi" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Sandi" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Emailkan tautan ini ke orang" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Kirim" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Setel tanggal kedaluwarsa" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Tanggal kedaluwarsa" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Bagian lewat email:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Tidak ada orang ditemukan" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Berbagi ulang tidak diizinkan" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Dibagikan dalam {item} dengan {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Batalkan berbagi" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "dapat mengedit" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "kontrol akses" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "buat" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "perbarui" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "hapus" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "bagikan" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Dilindungi sandi" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Galat ketika menghapus tanggal kedaluwarsa" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Galat ketika menyetel tanggal kedaluwarsa" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Mengirim ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Email terkirim" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Pembaruan gagal. Silakan laporkan masalah ini ke komunitas ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Setel ulang sandi ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Anda akan menerima tautan penyetelan ulang sandi lewat Email." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Email penyetelan ulang dikirim." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Permintaan gagal!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nama Pengguna" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Ajukan penyetelan ulang" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Sandi Anda telah disetel ulang" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Ke halaman masuk" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Sandi baru" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Setel ulang sandi" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Pribadi" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Pengguna" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplikasi" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Bantuan" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Akses ditolak" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud tidak ditemukan" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Edit kategori" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Tambahkan" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Peringatan Keamanan" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Versi PHP Anda rentan terhadap serangan NULL Byte (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Silakan perbarui instalasi PHP untuk dapat menggunakan ownCloud secara aman." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Generator acak yang aman tidak tersedia, silakan aktifkan ekstensi OpenSSL pada PHP." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Tanpa generator acak, penyerang mungkin dapat menebak token penyetelan sandi dan mengambil alih akun Anda." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Kemungkinan direktori data dan berkas Anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Untuk informasi lebih lanjut tentang pengaturan server yang benar, silakan lihat dokumentasi." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Buat sebuah akun admin" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Tingkat Lanjut" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Folder data" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Konfigurasikan basis data" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "akan digunakan" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Pengguna basis data" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Sandi basis data" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nama basis data" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Tablespace basis data" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Host basis data" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Selesaikan instalasi" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "layanan web dalam kontrol Anda" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Keluar" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Masuk otomatis ditolak!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin dalam bahaya!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Lupa sandi?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "selalu masuk" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Masuk" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Cara Alternatif untuk Masuk" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "sebelumnya" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "selanjutnya" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa saat." +msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 75fa4ff352..ea4a9afafb 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Muhammad Fauzan , 2012 -# Muhammad Panji , 2012 -# Muhammad Radifar , 2011 -# rodin , 2013 -# w41l , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Tidak dapat memindahkan %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Tidak dapat mengubah nama berkas" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Tidak ada galat, berkas sukses diunggah" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML." +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Berkas hanya diunggah sebagian" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Tidak ada berkas yang diunggah" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Folder sementara tidak ada" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Gagal menulis ke disk" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Ruang penyimpanan tidak mencukupi" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Direktori tidak valid." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Berkas" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Bagikan" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Hapus secara permanen" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Hapus" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Ubah nama" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Menunggu" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} sudah ada" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "ganti" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "sarankan nama" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "batalkan" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "mengganti {new_name} dengan {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "urungkan" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "Lakukan operasi penghapusan" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 berkas diunggah" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "berkas diunggah" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' bukan nama berkas yang valid." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Nama berkas tidak boleh kosong." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Gagal mengunggah berkas Anda karena berupa direktori atau ukurannya 0 byte" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Ruang penyimpanan tidak mencukupi" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Pengunggahan dibatalkan." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL tidak boleh kosong" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nama folder salah. Nama 'Shared' telah digunakan oleh Owncloud." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Galat" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nama" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Ukuran" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Dimodifikasi" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 folder" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} folder" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 berkas" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} berkas" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Unggah" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Penanganan berkas" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Ukuran pengunggahan maksimum" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "Kemungkinan maks.:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Dibutuhkan untuk pengunduhan multi-berkas dan multi-folder" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Aktifkan unduhan ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 berarti tidak terbatas" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Ukuran masukan maksimum untuk berkas ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Simpan" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Baru" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Berkas teks" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Folder" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Dari tautan" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Berkas yang dihapus" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Batal pengunggahan" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Anda tidak memiliki izin menulis di sini." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Unduh" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Batalkan berbagi" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Unggahan terlalu besar" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Berkas sedang dipindai, silakan tunggu." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Yang sedang dipindai" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Meningkatkan tembolok sistem berkas..." +msgstr "" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 752d0d3fa5..97d0a95d02 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Enkripsi" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Enkripsi berkas aktif." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Tipe berkas berikut tidak akan dienkripsi:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Kecualikan tipe berkas berikut dari enkripsi:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Tidak ada" +msgstr "" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 43f41067af..b9a25ef158 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# elmakong , 2012 -# rodin , 2013 -# w41l , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -22,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Akses diberikan" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Kesalahan dalam mengonfigurasi penyimpanan Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Berikan hak akses" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Masukkan kunci dan sandi aplikasi Dropbox yang benar." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Kesalahan dalam mengkonfigurasi penyimpanan Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Peringatan: \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Peringatan: Dukungan FTP di PHP tidak aktif atau tidak terpasang. Mount direktori FTP tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." +msgstr "" #: lib/config.php:437 msgid "" @@ -62,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Penyimpanan Eksternal" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nama folder" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Penyimpanan eksternal" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Konfigurasi" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opsi" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Berlaku" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Tambahkan penyimpanan" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Tidak satupun di set" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Semua Pengguna" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grup" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Pengguna" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Hapus" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Aktifkan Penyimpanan Eksternal Pengguna" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Izinkan pengguna untuk mengaitkan penyimpanan eksternal mereka" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Sertifikat root SSL" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Impor Sertifikat Root" +msgstr "" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 2fb4cd8cb0..cb403cf141 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Sandi" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Kirim" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s membagikan folder %s dengan Anda" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s membagikan file %s dengan Anda" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Unduh" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Tidak ada pratinjau tersedia untuk" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "layanan web dalam kontrol Anda" +msgstr "" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 03ff55760c..86feb61eed 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Tidak dapat menghapus permanen %s" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Tidak dapat memulihkan %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "jalankan operasi pemulihan" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "kesalahan" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "hapus berkas secara permanen" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "hapus secara permanen" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nama" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Dihapus" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 map" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} map" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 berkas" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} berkas" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Tempat sampah anda kosong!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Pulihkan" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Hapus" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Berkas yang Dihapus" +msgstr "" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index a886cd3037..536b435efe 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2013. -# Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -23,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Tidak dapat mengembalikan: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "sukses" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Berkas %s telah dikembalikan ke versi %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "gagal" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Berkas %s gagal dikembalikan ke versi %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Versi lama tidak tersedia" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Lokasi tidak ditentukan" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versi" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Kembalikan berkas ke versi sebelumnya dengan mengeklik tombol kembalikan" +msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 57352dd2b6..905f62a39d 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mohamad Hasan Al Banna , 2013 -# elmakong , 2012 -# rodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -22,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Bantuan" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Pribadi" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Setelan" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Pengguna" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplikasi" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Pengunduhan ZIP dimatikan." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Berkas harus diunduh satu persatu." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Kembali ke Daftar Berkas" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "tidak dapat ditentukan" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Aplikasi tidak diaktifkan" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Galat saat autentikasi" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token kedaluwarsa. Silakan muat ulang halaman." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Berkas" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Teks" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Gambar" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Setel nama pengguna admin." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Setel sandi admin." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s masukkan nama pengguna basis data." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s masukkan nama basis data." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s setel host basis data." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Nama pengguna dan/atau sandi PostgreSQL tidak valid" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Nama pengguna dan/atau sandi Oracle tidak valid" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Nama pengguna dan/atau sandi MySQL tidak valid" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Galat Basis Data: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Perintah yang bermasalah: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Pengguna MySQL '%s'@'localhost' sudah ada." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Hapus pengguna ini dari MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Pengguna MySQL '%s'@'%%' sudah ada." +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Hapus pengguna ini dari MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nama pengguna dan/atau sandi MySQL tidak valid: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Silakan periksa ulang panduan instalasi." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "beberapa detik yang lalu" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 menit yang lalu" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d menit yang lalu" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 jam yang lalu" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d jam yang lalu" +msgstr "" #: template.php:118 msgid "today" -msgstr "hari ini" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "kemarin" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d hari yang lalu" +msgstr "" #: template.php:121 msgid "last month" -msgstr "bulan kemarin" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d bulan yang lalu" +msgstr "" #: template.php:123 msgid "last year" -msgstr "tahun kemarin" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "beberapa tahun lalu" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s tersedia. Dapatkan info lebih lanjut" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "terbaru" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "Pemeriksaan pembaruan dinonaktifkan." +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Tidak dapat menemukan kategori \"%s\"" +msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 05971cc93a..4c06c2d7ec 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# elmakong , 2012 -# Muhammad Fauzan , 2012 -# Muhammad Panji , 2012 -# Muhammad Radifar , 2011 -# rodin , 2013 -# w41l , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Tidak dapat memuat daftar dari App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Galat autentikasi" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -38,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Tidak dapat mengubah nama tampilan" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Grup sudah ada" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Tidak dapat menambah grup" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Tidak dapat mengaktifkan aplikasi." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email disimpan" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Email tidak valid" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Tidak dapat menghapus grup" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Tidak dapat menghapus pengguna" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Bahasa telah diubah" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Permintaan tidak valid" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Admin tidak dapat menghapus dirinya sendiri dari grup admin" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Tidak dapat menambahkan pengguna ke grup %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Tidak dapat menghapus pengguna dari grup %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Tidak dapat memperbarui aplikasi." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Perbarui ke {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Nonaktifkan" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Aktifkan" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Mohon tunggu...." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Galat" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Memperbarui...." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Gagal ketika memperbarui aplikasi" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Diperbarui" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Menyimpan..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "dihapus" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "urungkan" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Tidak dapat menghapus pengguna" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grup" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Admin Grup" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Hapus" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "tambah grup" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Tuliskan nama pengguna yang valid" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Gagal membuat pengguna" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Tuliskan sandi yang valid" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Peringatan Keamanan" +msgstr "" #: templates/admin.php:18 msgid "" @@ -186,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Mungkin direktori data dan berkas Anda dapat diakses dari internet. Berkas .htaccess yang disediakan oleh ownCloud tidak berfungsi. Kami sangat menyarankan Anda untuk mengonfigurasi webserver Anda agar direktori data tidak lagi dapat diakses atau pindahkan direktori data ke luar akar dokumen webserver." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Peringatan Persiapan" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Web server Anda belum dikonfigurasi untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Silakan periksa ulang panduan instalasi." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Module 'fileinfo' tidak ada" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Kode pelokalan tidak berfungsi" +msgstr "" #: templates/admin.php:63 #, php-format @@ -223,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Server ownCloud ini tidak dapat menyetel kode pelokalan sistem ke nilai %s. Ini berarti mungkin akan terjadi masalah pada karakter tertentu pada nama berkas. Kami sarankan untuk menginstal paket yang dibutuhkan pada sistem Anda untuk mendukung %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Koneksi internet tidak berfungsi" +msgstr "" #: templates/admin.php:78 msgid "" @@ -237,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Server ownCloud ini tidak memiliki koneksi internet yang berfungsi. Artinya, beberapa fitur misalnya mengaitkan penyimpanan eksternal, notifikasi tentang pembaruan, atau instalasi aplikasi dari pihak ketiga tidak akan dapat berfungsi. Pengaksesan berkas secara online dan pengiriman email notifikasi mungkin juga tidak dapat berfungsi. Kami sarankan untuk mengaktifkan koneksi internet server ini agar mendapatkan semua fitur ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Jalankan tugas setiap kali halaman dimuat" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php telah terdaftar sebagai layanan webcron. Panggil halaman cron.php pada akar direktori ownCloud tiap menit lewat http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Gunakan layanan cron sistem. Panggil berkas cron.php pada folder ownCloud lewat cronjob sistem tiap menit." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Berbagi" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Aktifkan API Pembagian" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Izinkan tautan" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Izinkan pembagian ulang" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Keamanan" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Selalu Gunakan HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Paksa klien untuk tersambung ke ownCloud lewat koneksi yang dienkripsi." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Silakan sambungkan ke instalasi ownCloud lewat HTTPS untuk mengaktifkan atau menonaktifkan fitur SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Catat" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Level pencatatan" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Lainnya" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Ciutkan" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versi" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -342,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Dikembangkan oleh komunitas ownCloud, kode sumber dilisensikan di bawah AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Tambahkan Aplikasi Anda" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Aplikasi Lainnya" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Pilih Aplikasi" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Lihat halaman aplikasi di apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-dilisensikan oleh " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Perbarui" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Dokumentasi Pengguna" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Dokumentasi Administrator" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Dokumentasi Online" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Dukungan Komersial" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Anda telah menggunakan %s dari total %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Dapatkan aplikasi untuk sinkronisasi berkas Anda" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Tampilkan Penuntun Konfigurasi Awal" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Sandi" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Sandi Anda telah diubah" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Gagal mengubah sandi Anda" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Sandi saat ini" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Sandi baru" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Ubah sandi" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Nama Tampilan" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Alamat email Anda" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Masukkan alamat email untuk mengaktifkan pemulihan sandi" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Bahasa" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Bantu menerjemahkan" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Gunakan alamat ini untuk terhubung ke ownCloud Anda pada manajer berkas " +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Nama Masuk" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Buat" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Penyimpanan Baku" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Tak terbatas" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Lainnya" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Penyimpanan" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "ubah nama tampilan" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "setel sandi baru" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Baku" +msgstr "" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index f972150841..3dd721f537 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2013. -# Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -22,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Gagal menghapus konfigurasi server" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Konfigurasi valid dan koneksi dapat dilakukan!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Konfigurasi valid, tetapi Bind gagal. Silakan cek pengaturan server dan keamanan." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Konfigurasi salah. Silakan lihat log ownCloud untuk lengkapnya." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "penghapusan gagal" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Ambil alih pengaturan dari konfigurasi server saat ini?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Biarkan pengaturan?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Gagal menambah konfigurasi server" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Tes koneksi sukses" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Tes koneksi gagal" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Anda ingin menghapus Konfigurasi Server saat ini?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Konfirmasi Penghapusan" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Peringatan:/b> Aplikasi user_ldap dan user_webdavauth tidak kompatibel. Anda mungkin akan mengalami kejadian yang tidak diharapkan. Silakan minta administrator sistem untuk menonaktifkan salah satunya." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Peringatan: Modul LDAP PHP tidak terpasang, perangkat tidak akan bekerja. Silakan minta administrator sistem untuk memasangnya." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Konfigurasi server" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Tambah Konfigurasi Server" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "host" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Protokol dapat tidak ditulis, kecuali anda menggunakan SSL. Lalu jalankan dengan ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Base DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Satu Base DN per baris" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Anda dapat menetapkan Base DN untuk pengguna dan grup dalam tab Lanjutan" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "User DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN dari klien pengguna yang dengannya tautan akan diterapkan, mis. uid=agen,dc=contoh,dc=com. Untuk akses anonim, biarkan DN dan kata sandi kosong." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "kata kunci" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Untuk akses anonim, biarkan DN dan Kata sandi kosong." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "gunakan saringan login" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Definisikan filter untuk diterapkan, saat login dilakukan. %%uid menggantikan username saat login." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "gunakan pengganti %%uid, mis. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Daftar Filter Pengguna" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definisikan filter untuk diterapkan saat menerima pengguna." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "tanpa pengganti apapun, mis. \"objectClass=seseorang\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "saringan grup" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definisikan filter untuk diterapkan saat menerima grup." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "tanpa pengganti apapaun, mis. \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Pengaturan Koneksi" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Konfigurasi Aktif" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Jika tidak dicentang, konfigurasi ini dilewati." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Host Cadangan (Replika)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Berikan pilihan host cadangan. Harus merupakan replika dari server LDAP/AD utama." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Port Cadangan (Replika)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Nonaktifkan Server Utama" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Saat diaktifkan, ownCloud hanya akan terhubung ke server replika." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "gunakan TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Jangan gunakan utamanya untuk koneksi LDAPS, koneksi akan gagal." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Server LDAP dengan kapitalisasi tidak sensitif (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "matikan validasi sertivikat SSL" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Jika koneksi hanya bekerja dengan opsi ini, impor sertifikat SSL server LDAP dari server ownCloud anda." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "tidak disarankan, gunakan hanya untuk pengujian." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Gunakan Tembolok untuk Time-To-Live" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "dalam detik. perubahan mengosongkan cache" +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Pengaturan Direktori" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Bidang Tampilan Nama Pengguna" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atribut LDAP yang digunakan untuk menghasilkan nama pengguna ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Pohon Pengguna Dasar" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Satu Pengguna Base DN per baris" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Atribut Pencarian Pengguna" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Pilihan; satu atribut per baris" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Bidang Tampilan Nama Grup" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atribut LDAP yang digunakan untuk menghasilkan nama grup ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Pohon Grup Dasar" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Satu Grup Base DN per baris" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atribut Pencarian Grup" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "asosiasi Anggota-Grup" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Atribut Khusus" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Bidang Kuota" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Kuota Baku" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "dalam bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Bidang Email" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Aturan Penamaan Folder Home Pengguna" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Biarkan nama pengguna kosong (default). Atau tetapkan atribut LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Uji Konfigurasi" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "bantuan" +msgstr "" diff --git a/l10n/is/core.po b/l10n/is/core.po index 7eb1fde04b..151a15798d 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# kaztraz , 2012 -# sveinn , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -22,34 +20,34 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Notandinn %s deildi skrá með þér" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Notandinn %s deildi möppu með þér" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Flokkur ekki gefin" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Enginn flokkur til að bæta við?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -60,184 +58,184 @@ msgstr "" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Tegund ekki í boði." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID ekki í boði." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Villa við að bæta %s við eftirlæti." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Enginn flokkur valinn til eyðingar." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Villa við að fjarlægja %s úr eftirlæti." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Sunnudagur" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Mánudagur" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Þriðjudagur" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Miðvikudagur" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Fimmtudagur" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Föstudagur" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Laugardagur" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Janúar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Febrúar" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Mars" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Apríl" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maí" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Júní" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Júlí" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Ágúst" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Október" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Nóvember" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Desember" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Stillingar" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sek síðan" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 min síðan" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} min síðan" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "Fyrir 1 klst." +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "fyrir {hours} klst." +msgstr "" #: js/js.js:723 msgid "today" -msgstr "í dag" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "í gær" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} dagar síðan" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "síðasta mánuði" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "fyrir {months} mánuðum" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "mánuðir síðan" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "síðasta ári" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "árum síðan" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Í lagi" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Hætta við" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Veldu" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Já" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nei" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Tegund ekki tilgreind" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -245,15 +243,15 @@ msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Villa" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Nafn forrits ekki tilgreint" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Umbeðina skráin {file} ekki tiltæk!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -261,123 +259,123 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Deila" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Villa við deilingu" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Villa við að hætta deilingu" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Villa við að breyta aðgangsheimildum" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Deilt með þér og hópnum {group} af {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Deilt með þér af {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Deila með" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Deila með veftengli" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Verja með lykilorði" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Lykilorð" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Senda vefhlekk í tölvupóstu til notenda" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Senda" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Setja gildistíma" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Gildir til" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Deila með tölvupósti:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Engir notendur fundust" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Endurdeiling er ekki leyfð" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Deilt með {item} ásamt {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Hætta deilingu" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "getur breytt" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "aðgangsstýring" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "mynda" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "uppfæra" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "eyða" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "deila" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Verja með lykilorði" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Villa við að aftengja gildistíma" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Villa við að setja gildistíma" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Sendi ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Tölvupóstur sendur" +msgstr "" #: js/update.js:14 msgid "" @@ -392,89 +390,89 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "endursetja ownCloud lykilorð" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Beiðni um endursetningu send." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Beiðni mistókst!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Notendanafn" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Endursetja lykilorð" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Lykilorðið þitt hefur verið endursett." +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Fara á innskráningarsíðu" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nýtt lykilorð" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Endursetja lykilorð" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Persónustillingar" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Notendur" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Forrit" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Vefstjórn" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Hjálp" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Aðgangur bannaður" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Ský finnst ekki" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Breyta flokkum" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Bæta" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Öryggis aðvörun" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -488,13 +486,13 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Enginn traustur slembitölugjafi í boði, vinsamlegast virkjaðu PHP OpenSSL viðbótina." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Án öruggs slembitölugjafa er mögulegt að sjá fyrir öryggis auðkenni til að endursetja lykilorð og komast inn á aðganginn þinn." +msgstr "" #: templates/installation.php:39 msgid "" @@ -511,83 +509,83 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Útbúa vefstjóra aðgang" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Ítarlegt" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Gagnamappa" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Stilla gagnagrunn" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "verður notað" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Gagnagrunns notandi" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Gagnagrunns lykilorð" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nafn gagnagrunns" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Töflusvæði gagnagrunns" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Netþjónn gagnagrunns" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Virkja uppsetningu" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "vefþjónusta undir þinni stjórn" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Útskrá" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Sjálfvirkri innskráningu hafnað!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Ef þú breyttir ekki lykilorðinu þínu fyrir skömmu, er mögulegt að einhver annar hafi komist inn á aðganginn þinn." +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Vinsamlegast breyttu lykilorðinu þínu til að tryggja öryggi þitt." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Týndir þú lykilorðinu?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "muna eftir mér" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Skrá inn" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -595,13 +593,13 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "fyrra" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "næsta" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund." +msgstr "" diff --git a/l10n/is/files.po b/l10n/is/files.po index 6942c10f90..113f7f6117 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sveinn , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -21,51 +20,51 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Gat ekki fært %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Gat ekki endurskýrt skrá" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Engin skrá var send inn. Óþekkt villa." +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Engin villa, innsending heppnaðist" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Einungis hluti af innsendri skrá skilaði sér" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Engin skrá skilaði sér" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Vantar bráðabirgðamöppu" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Tókst ekki að skrifa á disk" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -73,15 +72,15 @@ msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Ógild mappa." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Skrár" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Deila" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -89,39 +88,39 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Eyða" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Endurskýra" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Bíður" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} er þegar til" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "yfirskrifa" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "stinga upp á nafni" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "hætta við" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "yfirskrifaði {new_name} með {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "afturkalla" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -129,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 skrá innsend" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -137,17 +136,17 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' er ekki leyfilegt nafn." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Nafn skráar má ekki vera tómt" +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -165,112 +164,112 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti." +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Ekki nægt pláss tiltækt" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Hætt við innsendingu." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Vefslóð má ekki vera tóm." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Villa" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nafn" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Stærð" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Breytt" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 mappa" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} möppur" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 skrá" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} skrár" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Senda inn" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Meðhöndlun skrár" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Hámarks stærð innsendingar" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "hámark mögulegt: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Nauðsynlegt til að sækja margar skrár og möppur í einu." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Virkja ZIP niðurhal." +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 er ótakmarkað" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Hámarks inntaksstærð fyrir ZIP skrár" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Vista" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nýtt" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Texta skrá" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Mappa" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Af tengli" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -278,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Hætta við innsendingu" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -286,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Ekkert hér. Settu eitthvað inn!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Niðurhal" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Hætta deilingu" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Innsend skrá er of stór" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Er að skima" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index d1357c26c4..39cd42b9bf 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Dulkóðun" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ekkert" +msgstr "" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 72593348fe..a8717c8f0d 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sveinn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -20,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Aðgengi veitt" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Villa við að setja upp Dropbox gagnasvæði" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Veita aðgengi" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Gefðu upp virkan Dropbox lykil og leynikóða" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Aðvörun: FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." +msgstr "" #: lib/config.php:437 msgid "" @@ -60,11 +59,11 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Ytri gagnageymsla" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nafn möppu" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -72,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Uppsetning" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Stillingar" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Gilt" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -88,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Ekkert sett" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Allir notendur" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Hópar" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Notendur" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Eyða" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Virkja ytra gagnasvæði notenda" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Leyfa notendum að bæta við sínum eigin ytri gagnasvæðum" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL rótar skilríki" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Flytja inn rótar skilríki" +msgstr "" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index cab803385d..7eb20db7b6 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Lykilorð" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Senda" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s deildi möppunni %s með þér" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s deildi skránni %s með þér" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Niðurhal" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Yfirlit ekki í boði fyrir" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "vefþjónusta undir þinni stjórn" +msgstr "" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 8955f0bf36..a500ca2c83 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Villa" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nafn" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 mappa" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} möppur" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 skrá" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} skrár" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Eyða" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index 00eb5c1b8c..a09e2f96d9 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -51,7 +50,7 @@ msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Útgáfur" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index c978737fb4..8368be629e 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sveinn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -20,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Hjálp" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Um mig" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Stillingar" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Notendur" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Forrit" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Stjórnun" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Slökkt á ZIP niðurhali." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Skrárnar verður að sækja eina og eina" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Aftur í skrár" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -64,27 +63,27 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Forrit ekki virkt" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Villa við auðkenningu" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Skrár" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Texti" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Myndir" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -114,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sek." +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "Fyrir 1 mínútu" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "fyrir %d mínútum" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "Fyrir 1 klst." +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "fyrir %d klst." +msgstr "" #: template.php:118 msgid "today" -msgstr "í dag" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "í gær" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "fyrir %d dögum" +msgstr "" #: template.php:121 msgid "last month" -msgstr "síðasta mánuði" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "fyrir %d mánuðum" +msgstr "" #: template.php:123 msgid "last year" -msgstr "síðasta ári" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "einhverjum árum" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s er í boði. Sækja meiri upplýsingar" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "nýjasta útgáfa" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "uppfærslupróf er ekki virkjað" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Fann ekki flokkinn \"%s\"" +msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 306d3b28f2..55a7c1431d 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sveinn , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -20,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Ekki tókst að hlaða lista frá forrita síðu" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Villa við auðkenningu" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -37,53 +36,53 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Hópur er þegar til" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Ekki tókst að bæta við hóp" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Gat ekki virkjað forrit" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Netfang vistað" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Ógilt netfang" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Ekki tókst að eyða hóp" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Ekki tókst að eyða notenda" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Tungumáli breytt" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Ógild fyrirspurn" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Ekki tókst að bæta notenda við hópinn %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Ekki tókst að fjarlægja notanda úr hópnum %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -95,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Gera óvirkt" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Virkja" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -107,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Villa" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -123,7 +122,7 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Er að vista ..." +msgstr "" #: js/users.js:43 msgid "deleted" @@ -131,7 +130,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "afturkalla" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -140,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Hópar" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Hópstjóri" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Eyða" +msgstr "" #: js/users.js:262 msgid "add group" @@ -168,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__nafn_tungumáls__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Öryggis aðvörun" +msgstr "" #: templates/admin.php:18 msgid "" @@ -181,7 +180,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Gagnamappan þín er að öllum líkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með því að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" @@ -319,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Meira" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Minna" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Útgáfa" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -337,60 +336,60 @@ msgid "" "licensed under the AGPL." -msgstr "Þróað af ownCloud samfélaginu, forrita kóðinn er skráðu með AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Bæta við forriti" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Fleiri forrit" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Veldu forrit" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Skoða síðu forrits hjá apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-leyfi skráð af " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Uppfæra" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Notenda handbók" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Stjórnenda handbók" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Handbók á netinu" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Vefspjall" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Villubókhald" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Borgaður stuðningur" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Þú hefur notað %s af tiltæku %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" @@ -402,27 +401,27 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Lykilorð" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Lykilorði þínu hefur verið breytt" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Ekki tókst að breyta lykilorðinu þínu" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Núverandi lykilorð" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nýtt lykilorð" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Breyta lykilorði" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -430,31 +429,31 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Netfang" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Netfangið þitt" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Tungumál" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Hjálpa við þýðingu" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" @@ -462,23 +461,23 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Búa til" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Sjálfgefin gagnageymsla" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Ótakmarkað" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Annað" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "gagnapláss" +msgstr "" #: templates/users.php:93 msgid "change display name" @@ -490,4 +489,4 @@ msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Sjálfgefið" +msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index fa68224263..240bb743eb 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -93,7 +92,7 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Netþjónn" +msgstr "" #: templates/settings.php:38 msgid "" @@ -125,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Lykilorð" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -331,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Hjálp" +msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index 5c46843e48..3844c7beca 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# zimba12 , 2011 -# Francesco Apruzzese , 2011, 2012 -# ufic , 2011, 2012 -# pgcloud , 2013 -# RColombo , 2011 -# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -26,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "L'utente %s ha condiviso un file con te" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "L'utente %s ha condiviso una cartella con te" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "L'utente %s ha condiviso il file \"%s\" con te. È disponibile per lo scaricamento qui: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "L'utente %s ha condiviso la cartella \"%s\" con te. È disponibile per lo scaricamento qui: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Tipo di categoria non fornito." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Nessuna categoria da aggiungere?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Questa categoria esiste già: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Tipo di oggetto non fornito." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "ID %s non fornito." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Errore durante l'aggiunta di %s ai preferiti." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Nessuna categoria selezionata per l'eliminazione." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Errore durante la rimozione di %s dai preferiti." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Domenica" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Lunedì" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Martedì" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Mercoledì" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Giovedì" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Venerdì" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sabato" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Gennaio" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Febbraio" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Marzo" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Aprile" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maggio" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Giugno" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Luglio" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Agosto" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Settembre" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Ottobre" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Novembre" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Dicembre" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Impostazioni" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "secondi fa" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "Un minuto fa" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minuti fa" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 ora fa" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} ore fa" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "oggi" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "ieri" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} giorni fa" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "mese scorso" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} mesi fa" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "mesi fa" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "anno scorso" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "anni fa" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Annulla" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Scegli" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Sì" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "No" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Il tipo di oggetto non è specificato." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -249,363 +243,363 @@ msgstr "Il tipo di oggetto non è specificato." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Errore" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Il nome dell'applicazione non è specificato." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Il file richiesto {file} non è installato!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Condivisi" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Condividi" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Errore durante la condivisione" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Errore durante la rimozione della condivisione" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Errore durante la modifica dei permessi" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Condiviso con te e con il gruppo {group} da {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Condiviso con te da {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Condividi con" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Condividi con collegamento" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Proteggi con password" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Password" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Invia collegamento via email" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Invia" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Imposta data di scadenza" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Data di scadenza" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Condividi tramite email:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Non sono state trovate altre persone" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "La ri-condivisione non è consentita" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Condiviso in {item} con {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Rimuovi condivisione" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "può modificare" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "controllo d'accesso" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "creare" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "aggiornare" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "eliminare" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "condividere" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Protetta da password" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Errore durante la rimozione della data di scadenza" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Errore durante l'impostazione della data di scadenza" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Invio in corso..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Messaggio inviato" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "L'aggiornamento non è riuscito. Segnala il problema alla comunità di ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "L'aggiornamento è stato effettuato correttamente. Stai per essere reindirizzato a ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Ripristino password di ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Usa il collegamento seguente per ripristinare la password: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Riceverai un collegamento per ripristinare la tua password via email" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Email di ripristino inviata." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Richiesta non riuscita!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nome utente" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Richiesta di ripristino" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "La password è stata ripristinata" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Alla pagina di accesso" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nuova password" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Ripristina la password" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personale" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Utenti" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Applicazioni" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Aiuto" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Accesso negato" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Nuvola non trovata" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Modifica le categorie" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Aggiungi" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Avviso di sicurezza" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "La tua versione di PHP è vulnerabile all'attacco NULL Byte (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Aggiorna la tua installazione di PHP per utilizzare ownCloud in modo sicuro." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Non è disponibile alcun generatore di numeri casuali sicuro. Abilita l'estensione OpenSSL di PHP" +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Senza un generatore di numeri casuali sicuro, un malintenzionato potrebbe riuscire a individuare i token di ripristino delle password e impossessarsi del tuo account." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "La cartella dei dati e i file sono probabilmente accessibili da Internet poiché il file .htaccess non funziona." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Per informazioni su come configurare correttamente il server, vedi la documentazione." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Crea un account amministratore" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avanzate" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Cartella dati" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configura il database" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "sarà utilizzato" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Utente del database" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Password del database" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nome del database" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Spazio delle tabelle del database" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Host del database" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Termina la configurazione" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "servizi web nelle tue mani" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Esci" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Accesso automatico rifiutato." +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Se non hai cambiato la password recentemente, il tuo account potrebbe essere compromesso." +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Hai perso la password?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "ricorda" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Accedi" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Accessi alternativi" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "precedente" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "successivo" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo." +msgstr "" diff --git a/l10n/it/files.po b/l10n/it/files.po index c79bc4fce6..d6d4895c47 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# zimba12 , 2011 -# Francesco Apruzzese , 2011 -# ufic , 2012 -# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -24,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Impossibile spostare %s - un file con questo nome esiste già" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Impossibile spostare %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Impossibile rinominare il file" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Nessun file è stato inviato. Errore sconosciuto" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Non ci sono errori, file caricato con successo" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Il file è stato parzialmente caricato" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Nessun file è stato caricato" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Cartella temporanea mancante" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Scrittura su disco non riuscita" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Spazio di archiviazione insufficiente" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Cartella non valida." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "File" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Condividi" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Elimina definitivamente" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Elimina" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Rinomina" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "In corso" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} esiste già" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "sostituisci" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "suggerisci nome" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "annulla" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "sostituito {new_name} con {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "annulla" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "esegui l'operazione di eliminazione" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 file in fase di caricamento" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "caricamento file" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' non è un nome file valido." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Il nome del file non può essere vuoto." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Lo spazio di archiviazione è pieno, i file non possono essere più aggiornati o sincronizzati!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Spazio disponibile insufficiente" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Invio annullato" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "L'URL non può essere vuoto." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Errore" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nome" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Dimensione" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modificato" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 cartella" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} cartelle" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 file" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} file" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Carica" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Gestione file" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Dimensione massima upload" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "numero mass.: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Necessario per lo scaricamento di file multipli e cartelle." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Abilita scaricamento ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 è illimitato" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Dimensione massima per i file ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Salva" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nuovo" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "File di testo" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Cartella" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Da collegamento" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "File eliminati" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Annulla invio" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Qui non hai i permessi di scrittura." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Non c'è niente qui. Carica qualcosa!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Scarica" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Rimuovi condivisione" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Il file caricato è troppo grande" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Scansione dei file in corso, attendi" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Scansione corrente" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Aggiornamento della cache del filesystem in corso..." +msgstr "" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index 22da6ecfe7..8a1de782b1 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Cifratura" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "La cifratura dei file è abilitata." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "I seguenti tipi di file non saranno cifrati:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Escludi i seguenti tipi di file dalla cifratura:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Nessuna" +msgstr "" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 617b253e7a..ca55908bbb 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -3,15 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Innocenzo Ventre , 2012 -# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 00:10+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Accesso consentito" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Errore durante la configurazione dell'archivio Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Concedi l'accesso" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Fornisci chiave di applicazione e segreto di Dropbox validi." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Errore durante la configurazione dell'archivio Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Avviso: il supporto Curl di PHP non è abilitato o non è installato. Impossibile montare condivisioni ownCloud / WebDAV o GoogleDrive. Chiedi all'amministratore di sistema di installarlo." +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Archiviazione esterna" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nome della cartella" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Archiviazione esterna" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Configurazione" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opzioni" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Applicabile" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Aggiungi archiviazione" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Nessuna impostazione" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Tutti gli utenti" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Gruppi" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Utenti" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Elimina" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Abilita la memoria esterna dell'utente" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Consenti agli utenti di montare la propria memoria esterna" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Certificati SSL radice" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importa certificato radice" +msgstr "" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 86370c04ea..beb6e3b036 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Password" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Invia" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s ha condiviso la cartella %s con te" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s ha condiviso il file %s con te" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Scarica" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Nessuna anteprima disponibile per" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "servizi web nelle tue mani" +msgstr "" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index a585ede393..b732267202 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Impossibile eliminare %s definitivamente" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Impossibile ripristinare %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "esegui operazione di ripristino" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Errore" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "elimina il file definitivamente" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Elimina definitivamente" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nome" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Eliminati" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 cartella" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} cartelle" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 file" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} file" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Qui non c'è niente. Il tuo cestino è vuoto." +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Ripristina" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Elimina" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "File eliminati" +msgstr "" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 24390f266e..05947d244b 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -21,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Impossibild ripristinare: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "completata" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Il file %s è stato ripristinato alla versione %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "non riuscita" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Il file %s non può essere ripristinato alla versione %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Non sono disponibili versioni precedenti" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Nessun percorso specificato" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versioni" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Ripristina un file a una versione precedente facendo clic sul rispettivo pulsante di ripristino" +msgstr "" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 976a9ba859..281132a12d 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Aiuto" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personale" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Impostazioni" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Utenti" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Applicazioni" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Lo scaricamento in formato ZIP è stato disabilitato." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "I file devono essere scaricati uno alla volta." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Torna ai file" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "I file selezionati sono troppo grandi per generare un file zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "non può essere determinato" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "L'applicazione non è abilitata" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Errore di autenticazione" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token scaduto. Ricarica la pagina." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "File" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Testo" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Immagini" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Imposta un nome utente di amministrazione." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Imposta una password di amministrazione." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s digita il nome utente del database." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s digita il nome del database." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s non dovresti utilizzare punti nel nome del database" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s imposta l'host del database." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Nome utente e/o password di PostgreSQL non validi" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "È necessario inserire un account esistente o l'amministratore." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Nome utente e/o password di Oracle non validi" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Nome utente e/o password di MySQL non validi" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Errore DB: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Il comando non consentito era: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "L'utente MySQL '%s'@'localhost' esiste già." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Elimina questo utente da MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "L'utente MySQL '%s'@'%%' esiste già" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Elimina questo utente da MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nome utente e/o password MS SQL non validi: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Leggi attentamente le guide d'installazione." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "secondi fa" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minuto fa" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minuti fa" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 ora fa" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d ore fa" +msgstr "" #: template.php:118 msgid "today" -msgstr "oggi" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "ieri" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d giorni fa" +msgstr "" #: template.php:121 msgid "last month" -msgstr "il mese scorso" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d mesi fa" +msgstr "" #: template.php:123 msgid "last year" -msgstr "l'anno scorso" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "anni fa" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s è disponibile. Ottieni ulteriori informazioni" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "aggiornato" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "il controllo degli aggiornamenti è disabilitato" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Impossibile trovare la categoria \"%s\"" +msgstr "" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 81f5c63d28..a13eba9d55 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# formalist , 2012 -# Francesco Apruzzese , 2011 -# Robin Appelman , 2012 -# Jan-Christoph Borchardt , 2011 -# ufic , 2011-2013 -# RColombo , 2011 -# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -26,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Impossibile caricare l'elenco dall'App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Errore di autenticazione" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -39,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Impossibile cambiare il nome visualizzato" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Il gruppo esiste già" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Impossibile aggiungere il gruppo" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Impossibile abilitare l'applicazione." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email salvata" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Email non valida" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Impossibile eliminare il gruppo" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Impossibile eliminare l'utente" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Lingua modificata" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Richiesta non valida" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Gli amministratori non possono rimuovere se stessi dal gruppo di amministrazione" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Impossibile aggiungere l'utente al gruppo %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Impossibile rimuovere l'utente dal gruppo %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Impossibile aggiornate l'applicazione." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Aggiorna a {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Disabilita" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Abilita" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Attendere..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Errore" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Aggiornamento in corso..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Errore durante l'aggiornamento" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Aggiornato" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Salvataggio in corso..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "eliminati" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "annulla" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Impossibile rimuovere l'utente" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Gruppi" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Gruppi amministrati" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Elimina" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "aggiungi gruppo" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Deve essere fornito un nome utente valido" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Errore durante la creazione dell'utente" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Deve essere fornita una password valida" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Italiano" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Avviso di sicurezza" +msgstr "" #: templates/admin.php:18 msgid "" @@ -187,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess fornito da ownCloud non funziona. Ti suggeriamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o sposta tale cartella fuori dalla radice del sito." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Avviso di configurazione" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Leggi attentamente le guide d'installazione." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Modulo 'fileinfo' mancante" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Locale non funzionante" +msgstr "" #: templates/admin.php:63 #, php-format @@ -224,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Questo server ownCloud non può impostare la localizzazione a %s. Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti richiesti sul sistema per supportare %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Concessione Internet non funzionante" +msgstr "" #: templates/admin.php:78 msgid "" @@ -238,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. Anche l'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità di ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Esegui un'operazione con ogni pagina caricata" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php è registrato su un sevizio webcron. Invoca la pagina cron.php nella radice di ownCloud ogni minuto, tramite http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Utilizza il servizio cron di sistema. Invoca il file cron.php nella cartella di ownCloud tramite un job ogni minuto." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Condivisione" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Abilita API di condivisione" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Consenti collegamenti" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Consenti la ri-condivisione" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Consenti agli utenti di condividere a loro volta elementi condivisi da altri" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Consenti agli utenti di condividere con chiunque" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Consenti agli utenti di condividere solo con utenti dei loro gruppi" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Protezione" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Forza HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Obbliga i client a connettersi a ownCloud tramite una confessione cifrata." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Connettiti a questa istanza di ownCloud tramite HTTPS per abilitare o disabilitare la protezione SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Log" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Livello di log" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Più" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Meno" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versione" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -343,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Sviluppato dalla comunità di ownCloud, il codice sorgente è rilasciato nei termini della licenza AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Aggiungi la tua applicazione" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Altre applicazioni" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Seleziona un'applicazione" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licenziato da " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Aggiorna" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Documentazione utente" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Documentazione amministratore" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Documentazione in linea" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Sistema di tracciamento bug" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Supporto commerciale" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Hai utilizzato %s dei %s disponibili" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Scarica le applicazioni per sincronizzare i tuoi file" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Mostra nuovamente la procedura di primo avvio" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Password" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "La tua password è cambiata" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Modifica password non riuscita" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Password attuale" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nuova password" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Modifica password" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Nome visualizzato" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Il tuo indirizzo email" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Inserisci il tuo indirizzo email per abilitare il recupero della password" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Lingua" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Migliora la traduzione" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Nome utente" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Crea" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Archiviazione predefinita" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Illimitata" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Altro" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Archiviazione" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "cambia il nome visualizzato" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "imposta una nuova password" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Predefinito" +msgstr "" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 4cc1f41826..1f90f76956 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Innocenzo Ventre , 2012. -# Vincenzo Reale , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -21,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Eliminazione della configurazione del server non riuscita" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "La configurazione è valida e la connessione può essere stabilita." +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "La configurazione è valida, ma il Bind non è riuscito. Controlla le impostazioni del server e le credenziali." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "La configurazione non è valida. Controlla il log di ownCloud per ulteriori dettagli." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Eliminazione non riuscita" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Vuoi recuperare le impostazioni dalla configurazione recente del server?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Vuoi mantenere le impostazioni?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Impossibile aggiungere la configurazione del server" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Prova di connessione riuscita" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Prova di connessione non riuscita" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Vuoi davvero eliminare la configurazione attuale del server?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Conferma l'eliminazione" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Avviso: le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne uno." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Avviso: il modulo PHP LDAP non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Configurazione del server" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Aggiungi configurazione del server" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Host" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "È possibile omettere il protocollo, ad eccezione se è necessario SSL. Quindi inizia con ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN base" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Un DN base per riga" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Avanzate" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN utente" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "Il DN per il client dell'utente con cui deve essere associato, ad esempio uid=agent,dc=example,dc=com. Per l'accesso anonimo, lasciare vuoti i campi DN e Password" +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Password" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Per l'accesso anonimo, lasciare vuoti i campi DN e Password" +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtro per l'accesso utente" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Specifica quale filtro utilizzare quando si tenta l'accesso. %%uid sostituisce il nome utente all'atto dell'accesso." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "utilizza il segnaposto %%uid, ad esempio \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Filtro per l'elenco utenti" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Specifica quale filtro utilizzare durante il recupero degli utenti." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "senza nessun segnaposto, per esempio \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filtro per il gruppo" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Specifica quale filtro utilizzare durante il recupero dei gruppi." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "senza nessun segnaposto, per esempio \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Impostazioni di connessione" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Configurazione attiva" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Se deselezionata, questa configurazione sarà saltata." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Porta" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Host di backup (Replica)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Fornisci un host di backup opzionale. Deve essere una replica del server AD/LDAP principale." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Porta di backup (Replica)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Disabilita server principale" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Se abilitata, ownCloud si collegherà solo al server di replica." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Usa TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Da non utilizzare per le connessioni LDAPS, non funzionerà." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Case insensitve LDAP server (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Disattiva il controllo del certificato SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Se la connessione funziona esclusivamente con questa opzione, importa il certificato SSL del server LDAP nel tuo server ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Non consigliato, utilizzare solo per test." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Tempo di vita della cache" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "in secondi. Il cambio svuota la cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Impostazioni delle cartelle" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Campo per la visualizzazione del nome utente" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "L'attributo LDAP da usare per generare il nome dell'utente ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Struttura base dell'utente" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Un DN base utente per riga" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Attributi di ricerca utente" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Opzionale; un attributo per riga" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Campo per la visualizzazione del nome del gruppo" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "L'attributo LDAP da usare per generare il nome del gruppo ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Struttura base del gruppo" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Un DN base gruppo per riga" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Attributi di ricerca gruppo" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Associazione gruppo-utente " +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Attributi speciali" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Campo Quota" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Quota predefinita" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "in byte" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Campo Email" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Regola di assegnazione del nome della cartella utente" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Lascia vuoto per il nome utente (predefinito). Altrimenti, specifica un attributo LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Prova configurazione" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Aiuto" +msgstr "" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index d09b77479f..4970fbb825 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012 -# Daisuke Deguchi , 2012-2013 -# tt yn , 2012 -# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -24,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "ユーザ %s はあなたとファイルを共有しています" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "ユーザ %s はあなたとフォルダを共有しています" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "ユーザ %s はあなたとファイル \"%s\" を共有しています。こちらからダウンロードできます: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "ユーザ %s はあなたとフォルダ \"%s\" を共有しています。こちらからダウンロードできます: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "カテゴリタイプは提供されていません。" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "追加するカテゴリはありませんか?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "このカテゴリはすでに存在します: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "オブジェクトタイプは提供されていません。" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID は提供されていません。" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "お気に入りに %s を追加エラー" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "削除するカテゴリが選択されていません。" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "お気に入りから %s の削除エラー" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "日" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "月" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "火" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "水" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "木" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "金" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "土" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "1月" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "2月" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "3月" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "4月" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "5月" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "6月" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "7月" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "8月" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "9月" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "10月" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "11月" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "12月" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "設定" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "数秒前" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 分前" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} 分前" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 時間前" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} 時間前" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "今日" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "昨日" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} 日前" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "一月前" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} 月前" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "月前" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "一年前" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "年前" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "OK" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "キャンセル" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "選択" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "はい" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "いいえ" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "オブジェクタイプが指定されていません。" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -247,363 +243,363 @@ msgstr "オブジェクタイプが指定されていません。" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "エラー" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "アプリ名がしていされていません。" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "必要なファイル {file} がインストールされていません!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "共有中" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "共有" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "共有でエラー発生" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "共有解除でエラー発生" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "権限変更でエラー発生" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "あなたと {owner} のグループ {group} で共有中" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner} と共有中" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "共有者" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "URLリンクで共有" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "パスワード保護" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "パスワード" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "メールリンク" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "送信" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "有効期限を設定" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "有効期限" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "メール経由で共有:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "ユーザーが見つかりません" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "再共有は許可されていません" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "{item} 内で {user} と共有中" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "共有解除" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "編集可能" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "アクセス権限" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "作成" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "更新" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "削除" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "共有" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "パスワード保護" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "有効期限の未設定エラー" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "有効期限の設定でエラー発生" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "送信中..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "メールを送信しました" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "更新に成功しました。この問題を ownCloud community にレポートしてください。" +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "更新に成功しました。今すぐownCloudにリダイレクトします。" +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloudのパスワードをリセットします" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "パスワードをリセットするには次のリンクをクリックして下さい: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "メールでパスワードをリセットするリンクが届きます。" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "リセットメールを送信します。" +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "リクエスト失敗!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "ユーザ名" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "リセットを要求します。" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "あなたのパスワードはリセットされました。" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "ログインページへ戻る" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "新しいパスワードを入力" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "パスワードをリセット" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "個人設定" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "ユーザ" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "アプリ" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "管理者" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "ヘルプ" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "アクセスが禁止されています" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "見つかりません" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "カテゴリを編集" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "追加" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "セキュリティ警告" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "ownCloud を安全に利用するに、PHPの更新を行なってください。" +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にして下さい。" +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "セキュアな乱数生成器が無い場合、攻撃者はパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。" +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr ".htaccess ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。" +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "あなたのサーバの適切な設定に関する情報として、ドキュメントを参照して下さい。" +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "管理者アカウントを作成してください" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "詳細設定" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "データフォルダ" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "データベースを設定してください" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "が使用されます" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "データベースのユーザ名" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "データベースのパスワード" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "データベース名" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "データベースの表領域" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "データベースのホスト名" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "セットアップを完了します" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "管理下にあるウェブサービス" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "ログアウト" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "自動ログインは拒否されました!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "アカウント保護の為、パスワードを再度の変更をお願いいたします。" +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "パスワードを忘れましたか?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "パスワードを記憶する" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "ログイン" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "代替ログイン" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "前" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "次" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" +msgstr "" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index a50568faf6..fd410415b8 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012 -# Daisuke Deguchi , 2012-2013 -# tt yn , 2012 -# tt yn , 2012 -# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -25,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s を移動できませんでした ― この名前のファイルはすでに存在します" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s を移動できませんでした" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "ファイル名の変更ができません" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "ファイルは何もアップロードされていません。不明なエラー" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "エラーはありません。ファイルのアップロードは成功しました" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "ファイルは一部分しかアップロードされませんでした" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "ファイルはアップロードされませんでした" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "テンポラリフォルダが見つかりません" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "ディスクへの書き込みに失敗しました" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "ストレージに十分な空き容量がありません" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "無効なディレクトリです。" +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "ファイル" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "共有" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "完全に削除する" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "削除" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "名前の変更" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "保留" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} はすでに存在しています" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "置き換え" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "推奨名称" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "キャンセル" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{old_name} を {new_name} に置換" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "元に戻す" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "削除を実行" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "ファイルを1つアップロード中" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "ファイルをアップロード中" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' は無効なファイル名です。" +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "ファイル名を空にすることはできません。" +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "あなたのストレージはほぼ一杯です({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "ディレクトリもしくは0バイトのファイルはアップロードできません" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "利用可能なスペースが十分にありません" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "アップロードはキャンセルされました。" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URLは空にできません。" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "エラー" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "名前" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "サイズ" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "更新日時" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 フォルダ" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} フォルダ" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 ファイル" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} ファイル" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "アップロード" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "ファイル操作" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "最大アップロードサイズ" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "最大容量: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "複数ファイルおよびフォルダのダウンロードに必要" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP形式のダウンロードを有効にする" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0を指定した場合は無制限" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIPファイルへの最大入力サイズ" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "保存" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "新規作成" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "テキストファイル" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "フォルダ" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "リンク" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "削除ファイル" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "アップロードをキャンセル" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "あなたには書き込み権限がありません。" +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "ここには何もありません。何かアップロードしてください。" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "ダウンロード" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "共有しない" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "ファイルサイズが大きすぎます" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "ファイルをスキャンしています、しばらくお待ちください。" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "スキャン中" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "ファイルシステムキャッシュを更新中..." +msgstr "" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 474babe04a..1dd360caf3 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "暗号化" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "ファイルの暗号化は有効です。" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "次のファイルタイプは暗号化されません:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "次のファイルタイプを暗号化から除外:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "なし" +msgstr "" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 19b118939c..9d98db86d4 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -3,16 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012 -# Daisuke Deguchi , 2012-2013 -# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 04:20+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "アクセスは許可されました" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Dropboxストレージの設定エラー" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "アクセスを許可" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "有効なDropboxアプリのキーとパスワードを入力して下さい。" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Googleドライブストレージの設定エラー" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "警告: \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。" +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "警告: PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。" +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "警告: PHP の Curl サポートは無効もしくはインストールされていません。ownCloud / WebDAV もしくは GoogleDrive のマウントはできません。システム管理者にインストールをお願いして下さい。" +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "外部ストレージ" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "フォルダ名" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "外部ストレージ" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "設定" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "オプション" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "適用範囲" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "ストレージを追加" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "未設定" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "すべてのユーザ" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "グループ" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "ユーザ" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "削除" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "ユーザの外部ストレージを有効にする" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "ユーザに外部ストレージのマウントを許可する" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSLルート証明書" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "ルート証明書をインポート" +msgstr "" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 443064306d..acf79c00f0 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "パスワード" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "送信" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s はフォルダー %s をあなたと共有中です" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s はファイル %s をあなたと共有中です" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "ダウンロード" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "プレビューはありません" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "管理下のウェブサービス" +msgstr "" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 2130acb86f..6608abcb81 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "%s を完全に削除出来ませんでした" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "%s を復元出来ませんでした" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "復元操作を実行する" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "エラー" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "ファイルを完全に削除する" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "完全に削除する" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "名前" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "削除済み" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 フォルダ" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} フォルダ" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 ファイル" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} ファイル" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "ここには何もありません。ゴミ箱は空です!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "復元" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "削除" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "削除されたファイル" +msgstr "" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 480fb5e1fe..9407f51fe9 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2013. -# , 2012. -# YANO Tetsu , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -24,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "元に戻せませんでした: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "成功" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "ファイル %s をバージョン %s に戻しました" +msgstr "" #: history.php:49 msgid "failure" -msgstr "失敗" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "ファイル %s をバージョン %s に戻せませんでした" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "利用可能な古いバージョンはありません" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "パスが指定されていません" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "バージョン" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "もとに戻すボタンをクリックすると、ファイルを過去のバージョンに戻します" +msgstr "" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 8b2c637f42..87909300d8 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012 -# Daisuke Deguchi , 2013 -# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -22,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "ヘルプ" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "個人設定" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "設定" +msgstr "" #: app.php:385 msgid "Users" -msgstr "ユーザ" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "アプリ" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "管理者" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIPダウンロードは無効です。" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "ファイルは1つずつダウンロードする必要があります。" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "ファイルに戻る" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "測定できませんでした" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "アプリケーションは無効です" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "認証エラー" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "トークンが無効になりました。ページを再読込してください。" +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "ファイル" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "TTY TDD" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "画像" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "管理者のユーザ名を設定。" +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "管理者のパスワードを設定。" +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s のデータベースのユーザ名を入力してください。" +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s のデータベース名を入力してください。" +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s ではデータベース名にドットを利用できないかもしれません。" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s にデータベースホストを設定します。" +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQLのユーザ名もしくはパスワードは有効ではありません" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "既存のアカウントもしくは管理者のどちらかを入力する必要があります。" +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracleのユーザ名もしくはパスワードは有効ではありません" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQLのユーザ名もしくはパスワードは有効ではありません" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "DBエラー: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "違反コマンド: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQLのユーザ '%s'@'localhost' はすでに存在します。" +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "MySQLからこのユーザを削除" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQLのユーザ '%s'@'%%' はすでに存在します。" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "MySQLからこのユーザを削除する。" +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "インストールガイドをよく確認してください。" +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "数秒前" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1分前" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d 分前" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 時間前" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d 時間前" +msgstr "" #: template.php:118 msgid "today" -msgstr "今日" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "昨日" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d 日前" +msgstr "" #: template.php:121 msgid "last month" -msgstr "先月" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d 分前" +msgstr "" #: template.php:123 msgid "last year" -msgstr "昨年" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "年前" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s が利用可能です。詳細情報 を確認ください" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "最新です" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "更新チェックは無効です" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "カテゴリ \"%s\" が見つかりませんでした" +msgstr "" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 680e483218..b4d0cc97a5 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012 -# Daisuke Deguchi , 2012-2013 -# tt yn , 2012 -# tt yn , 2012 -# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -24,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "アプリストアからリストをロードできません" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "認証エラー" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -37,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "表示名を変更できません" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "グループは既に存在しています" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "グループを追加できません" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "アプリを有効にできませんでした。" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "メールアドレスを保存しました" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "無効なメールアドレス" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "グループを削除できません" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "ユーザを削除できません" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "言語が変更されました" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "無効なリクエストです" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "管理者は自身を管理者グループから削除できません。" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "ユーザをグループ %s に追加できません" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "ユーザをグループ %s から削除できません" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "アプリを更新出来ませんでした。" +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "{appversion} に更新" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "無効" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "有効" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "しばらくお待ちください。" +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "エラー" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "更新中...." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "アプリの更新中にエラーが発生" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "更新済み" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "保存中..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "削除" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "元に戻す" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "ユーザを削除出来ません" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "グループ" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "グループ管理者" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "削除" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "グループを追加" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "有効なユーザ名を指定する必要があります" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "ユーザ作成エラー" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "有効なパスワードを指定する必要があります" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Japanese (日本語)" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "セキュリティ警告" +msgstr "" #: templates/admin.php:18 msgid "" @@ -185,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。 " +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "セットアップ警告" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "インストールガイドをよく確認してください。" +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "モジュール 'fileinfo' が見つかりません" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。" +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "ロケールが動作していません" +msgstr "" #: templates/admin.php:63 #, php-format @@ -222,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "この ownCloud サーバは、システムロケールを %s に設定できません。これは、ファイル名の特定の文字で問題が発生する可能性があることを意味しています。%s をサポートするために、システムに必要なパッケージをインストールすることを強く推奨します。" +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "インターネット接続が動作していません" +msgstr "" #: templates/admin.php:78 msgid "" @@ -236,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "この ownCloud サーバには有効なインターネット接続がありません。これは、外部ストレージのマウント、更新の通知、サードパーティ製アプリのインストール、のようないくつかの機能が動作しないことを意味しています。リモートからファイルにアクセスしたり、通知メールを送信したりすることもできません。全ての機能を利用するためには、このサーバのインターネット接続を有効にすることを推奨します。" +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "各ページの読み込み時にタスクを実行する" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php は webcron サービスに登録されています。owncloud のルートにある cron.php のページを http 経由で1分に1回呼び出して下さい。" +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "システムの cron サービスを利用する。システムの cronjob を通して1分に1回 owncloud 内の cron.php ファイルを呼び出して下さい。" +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "共有" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "共有APIを有効にする" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "アプリからの共有APIの利用を許可する" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "リンクを許可する" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "リンクによりアイテムを公開することを許可する" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "再共有を許可する" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "ユーザが共有しているアイテムの再共有を許可する" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "ユーザが誰とでも共有することを許可する" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "ユーザにグループ内のユーザとのみ共有を許可する" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "セキュリティ" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "常にHTTPSを使用する" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "クライアントからownCloudへの接続を常に暗号化する" +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "常にSSL接続を有効/無効にするために、HTTPS経由でこの ownCloud に接続して下さい。" +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "ログ" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "ログレベル" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "もっと見る" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "閉じる" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "バージョン" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -341,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。" +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "アプリを追加" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "さらにアプリを表示" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "アプリを選択してください" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "apps.owncloud.com でアプリケーションのページを見てください" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-ライセンス: " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "更新" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "ユーザドキュメント" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "管理者ドキュメント" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "オンラインドキュメント" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "フォーラム" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "バグトラッカー" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "コマーシャルサポート" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "現在、%s / %s を利用しています" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "ファイルを同期するためのアプリを取得" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "初回ウィザードを再表示する" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "パスワード" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "パスワードを変更しました" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "パスワードを変更することができません" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "現在のパスワード" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "新しいパスワード" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "パスワードを変更" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "表示名" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "あなたのメールアドレス" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "※パスワード回復を有効にするにはメールアドレスの入力が必要です" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "言語" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "翻訳に協力する" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "ログイン名" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "作成" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "デフォルトストレージ" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "無制限" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "その他" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "ストレージ" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "表示名を変更" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "新しいパスワードを設定" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "デフォルト" +msgstr "" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index d5116ad226..30e5b23500 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012-2013. -# , 2012. -# YANO Tetsu , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -23,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "サーバ設定の削除に失敗しました" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "設定は有効であり、接続を確立しました!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "設定は有効ですが、接続に失敗しました。サーバ設定と資格情報を確認して下さい。" +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "設定は無効です。詳細は ownCloud のログを見て下さい。" +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "削除に失敗しました" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "最近のサーバ設定から設定を引き継ぎますか?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "設定を保持しますか?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "サーバ設定を追加できません" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "接続テストに成功しました" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "接続テストに失敗しました" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "現在のサーバ設定を本当に削除してもよろしいですか?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "削除の確認" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能姓があります。システム管理者にどちらかを無効にするよう問い合わせてください。" +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "警告: PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。" +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "サーバ設定" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "サーバ設定を追加" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "ホスト" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "ベースDN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "1行に1つのベースDN" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "拡張タブでユーザとグループのベースDNを指定することができます。" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "ユーザDN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "クライアントユーザーのDNは、特定のものに結びつけることはしません。 例えば uid=agent,dc=example,dc=com. だと匿名アクセスの場合、DNとパスワードは空のままです。" +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "パスワード" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "匿名アクセスの場合は、DNとパスワードを空にしてください。" +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "ユーザログインフィルタ" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "ログインするときに適用するフィルターを定義する。%%uid がログイン時にユーザー名に置き換えられます。" +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "%%uid プレースホルダーを利用してください。例 \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "ユーザリストフィルタ" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "ユーザーを取得するときに適用するフィルターを定義する。" +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "プレースホルダーを利用しないでください。例 \"objectClass=person\"" +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "グループフィルタ" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "グループを取得するときに適用するフィルターを定義する。" +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "プレースホルダーを利用しないでください。例 \"objectClass=posixGroup\"" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "接続設定" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "設定はアクティブです" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "チェックを外すと、この設定はスキップされます。" +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "ポート" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "バックアップ(レプリカ)ホスト" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "バックアップホストをオプションで指定することができます。メインのLDAP/ADサーバのレプリカである必要があります。" +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "バックアップ(レプリカ)ポート" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "メインサーバを無効にする" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "有効にすると、ownCloudはレプリカサーバにのみ接続します。" +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "TLSを利用" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "LDAPS接続のために追加でそれを利用しないで下さい。失敗します。" +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "大文字/小文字を区別しないLDAPサーバ(Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "SSL証明書の確認を無効にする。" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "接続がこのオプションでのみ動作する場合は、LDAPサーバのSSL証明書をownCloudサーバにインポートしてください。" +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "推奨しません、テスト目的でのみ利用してください。" +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "キャッシュのTTL" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "秒。変更後にキャッシュがクリアされます。" +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "ディレクトリ設定" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "ユーザ表示名のフィールド" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "ユーザのownCloud名の生成に利用するLDAP属性。" +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "ベースユーザツリー" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "1行に1つのユーザベースDN" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "ユーザ検索属性" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "オプション:1行に1属性" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "グループ表示名のフィールド" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "グループのownCloud名の生成に利用するLDAP属性。" +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "ベースグループツリー" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "1行に1つのグループベースDN" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "グループ検索属性" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "グループとメンバーの関連付け" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "特殊属性" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "クォータフィールド" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "クォータのデフォルト" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "バイト" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "メールフィールド" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "ユーザのホームフォルダ命名規則" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "ユーザ名を空のままにしてください(デフォルト)。そうでない場合は、LDAPもしくはADの属性を指定してください。" +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "テスト設定" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "ヘルプ" +msgstr "" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 63d4dff145..036356bcea 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -162,11 +162,11 @@ msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "წამის წინ" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 წუთის წინ" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" @@ -174,7 +174,7 @@ msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 საათის წინ" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" @@ -182,11 +182,11 @@ msgstr "" #: js/js.js:723 msgid "today" -msgstr "დღეს" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "გუშინ" +msgstr "" #: js/js.js:725 msgid "{days} days ago" @@ -293,9 +293,9 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "პაროლი" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -409,7 +409,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "" @@ -435,11 +435,11 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "პერსონა" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "მომხმარებლები" +msgstr "" #: strings.php:7 msgid "Apps" @@ -447,11 +447,11 @@ msgstr "" #: strings.php:8 msgid "Admin" -msgstr "ადმინისტრატორი" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "შველა" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" @@ -519,37 +519,37 @@ msgstr "" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" @@ -561,33 +561,33 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 23ea7ef073..e0c0d63d63 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "ფაილები" +msgstr "" #: js/fileactions.js:116 msgid "Share" @@ -289,7 +289,7 @@ msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "გადმოწერა" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index 357e27ab92..06cfd02260 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_external.po b/l10n/ka/files_external.po index 105b3833e5..68e332b10a 100644 --- a/l10n/ka/files_external.po +++ b/l10n/ka/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -99,7 +99,7 @@ msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "მომხმარებლები" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 622310cbd5..80a38e069c 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Lasha GeTto , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "პაროლი" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" @@ -38,7 +37,7 @@ msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "გადმოწერა" +msgstr "" #: templates/public.php:40 msgid "No preview available for" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index e26f005489..934d68261e 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_versions.po b/l10n/ka/files_versions.po index 302be1bdbf..fe02221e10 100644 --- a/l10n/ka/files_versions.po +++ b/l10n/ka/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 6051b7dcc6..e7a217168c 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# GeoCybers , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -20,11 +19,11 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "შველა" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "პერსონა" +msgstr "" #: app.php:373 msgid "Settings" @@ -32,7 +31,7 @@ msgstr "" #: app.php:385 msgid "Users" -msgstr "მომხმარებლები" +msgstr "" #: app.php:398 msgid "Apps" @@ -40,11 +39,11 @@ msgstr "" #: app.php:406 msgid "Admin" -msgstr "ადმინისტრატორი" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP გადმოწერა გამორთულია" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." @@ -76,7 +75,7 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "ფაილები" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" @@ -114,92 +113,92 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "წამის წინ" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 წუთის წინ" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d წუთის წინ" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 საათის წინ" +msgstr "" #: template.php:117 #, php-format @@ -208,16 +207,16 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "დღეს" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "გუშინ" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d დღის წინ" +msgstr "" #: template.php:121 msgid "last month" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index badacf85c1..24f9f358ae 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -401,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "პაროლი" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index 1396bede36..11c9b5fb07 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "პაროლი" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "შველა" +msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 2985848c33..e72c06beee 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# drlinux64 , 2012 -# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -22,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "მომხმარებელმა %s გაგიზიარათ ფაილი" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "მომხმარებელმა %s გაგიზიარათ ფოლდერი" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "მომხმარებელმა %s გაგიზიარათ ფაილი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "მომხმარებელმა %s გაგიზიარათ ფოლდერი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "კატეგორიის ტიპი არ არის განხილული." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "არ არის კატეგორია დასამატებლად?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "კატეგორია უკვე არსებობს: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "ობიექტის ტიპი არ არის განხილული." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID არ არის განხილული" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "შეცდომა %s–ის ფევორიტებში დამატების დროს." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "სარედაქტირებელი კატეგორია არ არის არჩეული " +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "კვირა" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "ორშაბათი" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "სამშაბათი" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "ოთხშაბათი" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "ხუთშაბათი" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "პარასკევი" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "შაბათი" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "იანვარი" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "თებერვალი" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "მარტი" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "აპრილი" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "მაისი" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "ივნისი" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "ივლისი" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "აგვისტო" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "სექტემბერი" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "ოქტომბერი" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "ნოემბერი" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "დეკემბერი" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "პარამეტრები" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "წამის წინ" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 წუთის წინ" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} წუთის წინ" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 საათის წინ" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} საათის წინ" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "დღეს" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "გუშინ" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} დღის წინ" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "გასულ თვეში" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} თვის წინ" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "თვის წინ" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "ბოლო წელს" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "წლის წინ" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "დიახ" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "უარყოფა" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "არჩევა" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "კი" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "არა" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "ობიექტის ტიპი არ არის მითითებული." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -245,363 +243,363 @@ msgstr "ობიექტის ტიპი არ არის მითი #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "შეცდომა" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "აპლიკაციის სახელი არ არის მითითებული." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "მოთხოვნილი ფაილი {file} არ არის დაინსტალირებული." +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "გაზიარებული" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "გაზიარება" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "შეცდომა გაზიარების დროს" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "შეცდომა გაზიარების გაუქმების დროს" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "შეცდომა დაშვების ცვლილების დროს" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "გაზიარდა თქვენთვის და ჯგუფისთვის {group}, {owner}–ის მიერ" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "გაზიარდა თქვენთვის {owner}–ის მიერ" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "გაუზიარე" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "გაუზიარე ლინკით" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "პაროლით დაცვა" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "პაროლი" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "ლინკის პიროვნების იმეილზე გაგზავნა" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "გაგზავნა" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "მიუთითე ვადის გასვლის დრო" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "ვადის გასვლის დრო" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "გააზიარე მეილზე" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "მომხმარებელი არ არის ნაპოვნი" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "გაზიარდა {item}–ში {user}–ის მიერ" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "გაზიარების მოხსნა" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "შეგიძლია შეცვლა" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "დაშვების კონტროლი" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "შექმნა" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "განახლება" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "წაშლა" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "გაზიარება" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "პაროლით დაცული" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "შეცდომა ვადის გასვლის მითითების დროს" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "გაგზავნა ...." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "იმეილი გაიგზავნა" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: ownCloud community." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud პაროლის შეცვლა" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "გამოიყენე შემდეგი ლინკი პაროლის შესაცვლელად: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "თქვენ მოგივათ პაროლის შესაცვლელი ლინკი მეილზე" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "რესეტის მეილი გაიგზავნა" +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "მოთხოვნა შეწყდა!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "მომხმარებელი" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "პაროლის შეცვლის მოთხოვნა" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "თქვენი პაროლი შეცვლილია" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "შესვლის გვერდზე" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "ახალი პაროლი" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "პაროლის შეცვლა" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "პირადი" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "მომხმარებლები" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "აპლიკაციები" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "ადმინი" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "დახმარება" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "წვდომა აკრძალულია" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "ღრუბელი არ არსებობს" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "კატეგორიების რედაქტირება" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "დამატება" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "უსაფრთხოების გაფრთხილება" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "თქვენი PHP ვერსია შეიცავს საფრთხეს NULL Byte შეტევებისთვის (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "იმისათვის რომ გამოიყენოთ ownCloud უსაფრთხოდ, გთხოვთ განაახლოთ თქვენი PHP ვერსია." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "შემთხვევითი სიმბოლოების გენერატორი არ არსებობს, გთხოვთ ჩართოთ PHP OpenSSL გაფართოება." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "შემთხვევითი სიმბოლოების გენერატორის გარეშე, შემტევმა შეიძლება ამოიცნოს თქვენი პაროლი შეგიცვალოთ ის და დაეუფლოს თქვენს ექაუნთს." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "თქვენი data დირექტორია და ფაილები დაშვებადია ინტერნეტში რადგან .htaccess ფაილი არ მუშაობს." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "სერვერის კორექტულად დასაკონფიგურირებლად, ნახეთ შემდეგი დოკუმენტაცია." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "შექმენი ადმინ ექაუნტი" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "დამატებითი ფუნქციები" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "მონაცემთა საქაღალდე" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "მონაცემთა ბაზის კონფიგურირება" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "გამოყენებული იქნება" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "მონაცემთა ბაზის მომხმარებელი" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "მონაცემთა ბაზის პაროლი" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "მონაცემთა ბაზის სახელი" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "ბაზის ცხრილის ზომა" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "მონაცემთა ბაზის ჰოსტი" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "კონფიგურაციის დასრულება" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "თქვენი კონტროლის ქვეშ მყოფი ვებ სერვისები" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "გამოსვლა" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "ავტომატური შესვლა უარყოფილია!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "თუ თქვენ არ შეცვლით პაროლს, თქვენი ანგარიში შეიძლება იყოს დაშვებადი სხვებისთვის" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "გთხოვთ შეცვალოთ თქვენი პაროლი, თქვენი ანგარიშის დასაცავად." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "დაგავიწყდათ პაროლი?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "დამახსოვრება" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "შესვლა" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "ალტერნატიული Login–ი" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "წინა" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "შემდეგი" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "ownCloud–ის განახლება %s–ვერსიამდე. ეს მოითხოვს გარკვეულ დროს." +msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index e1fcc777cd..cba8e7c315 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -3,15 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# drlinux64 , 2012 -# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s –ის გადატანა ვერ მოხერხდა" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "ფაილის სახელის გადარქმევა ვერ მოხერხდა" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "ფაილი არ აიტვირთა" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "დროებითი საქაღალდე არ არსებობს" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "შეცდომა დისკზე ჩაწერისას" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "საცავში საკმარისი ადგილი არ არის" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "დაუშვებელი დირექტორია." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "ფაილები" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "გაზიარება" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "სრულად წაშლა" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "წაშლა" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "გადარქმევა" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "მოცდის რეჟიმში" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} უკვე არსებობს" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "შეცვლა" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "სახელის შემოთავაზება" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "უარყოფა" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} შეცვლილია {old_name}–ით" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "დაბრუნება" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "მიმდინარეობს წაშლის ოპერაცია" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 ფაილის ატვირთვა" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "ფაილები იტვირთება" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' არის დაუშვებელი ფაილის სახელი." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "ფაილის სახელი არ შეიძლება იყოს ცარიელი." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "საკმარისი ადგილი არ არის" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "ატვირთვა შეჩერებულ იქნა." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL არ შეიძლება იყოს ცარიელი." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "შეცდომა" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "სახელი" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "ზომა" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "შეცვლილია" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 საქაღალდე" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} საქაღალდე" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 ფაილი" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} ფაილი" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "ატვირთვა" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "ფაილის დამუშავება" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "მაქსიმუმ ატვირთის ზომა" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "მაქს. შესაძლებელი:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "საჭიროა მულტი ფაილ ან საქაღალდის ჩამოტვირთვა." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP-Download–ის ჩართვა" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 is unlimited" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP ფაილების მაქსიმუმ დასაშვები ზომა" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "შენახვა" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "ახალი" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "ტექსტური ფაილი" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "საქაღალდე" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "მისამართიდან" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "წაშლილი ფაილები" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "ატვირთვის გაუქმება" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "თქვენ არ გაქვთ ჩაწერის უფლება აქ." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "აქ არაფერი არ არის. ატვირთე რამე!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "ჩამოტვირთვა" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "გაზიარების მოხსნა" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "ასატვირთი ფაილი ძალიან დიდია" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "მიმდინარე სკანირება" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "ფაილური სისტემის ქეშის განახლება...." +msgstr "" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index 538122996f..675b9adf28 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -20,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "ენკრიპცია" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "ფაილის ენკრიპცია ჩართულია." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "შემდეგი ფაილური ტიპების ენკრიპცია არ მოხდება:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "ამოიღე შემდეგი ფაილის ტიპები ენკრიპციიდან:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "არა" +msgstr "" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 1d05630077..ac556d3206 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -3,14 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 09:00+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "დაშვება მინიჭებულია" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "შეცდომა Dropbox საცავის კონფიგურირების დროს" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "დაშვების მინიჭება" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "გთხოვთ მიუთითოთ Dropbox აპლიკაციის გასაღები და კოდი." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "შეცდომა Google Drive საცავის კონფიგურირების დროს" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "გაფრთხილება:PHP–ის Curl მხარდაჭერა არ არის ჩართული ან ინსტალირებული. ownCloud / WebDAV ან GoogleDrive–ის მონტირება შეუძლებელია. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის." +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "ექსტერნალ საცავი" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "ფოლდერის სახელი" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "ექსტერნალ საცავი" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "კონფიგურაცია" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "ოფცია" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "მიღებადი" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "საცავის დამატება" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "არაფერია მითითებული" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "ყველა მომხმარებელი" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "ჯგუფები" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "მომხმარებელი" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "წაშლა" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "მომხმარებლის ექსტერნალ საცავის აქტივირება" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "მიეცით მომხმარებლებს თავისი ექსტერნალ საცავის მონტირების უფლება" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL root სერთიფიკატები" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Root სერთიფიკატის იმპორტირება" +msgstr "" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 968899752d..c843b0a58f 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "პაროლი" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "გაგზავნა" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s–მა გაგიზიარათ ფოლდერი %s" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s–მა გაგიზიარათ ფაილი %s" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "ჩამოტვირთვა" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "წინასწარი დათვალიერება შეუძლებელია" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "web services under your control" +msgstr "" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 5938528d4d..2c4b494174 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-22 01:58+0200\n" -"PO-Revision-Date: 2013-04-21 18:40+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "%s–ის აღდგენა ვერ მოხერხდა" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "მიმდინარეობს აღდგენის ოპერაცია" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "შეცდომა" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "ფაილის სრულად წაშლა" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "სრულად წაშლა" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "სახელი" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "წაშლილი" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 საქაღალდე" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} საქაღალდე" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 ფაილი" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} ფაილი" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "აღდგენა" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "წაშლა" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "წაშლილი ფაილები" +msgstr "" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index 13de4c38f4..f9e578d0f2 100644 --- a/l10n/ka_GE/files_versions.po +++ b/l10n/ka_GE/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -21,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "ვერ მოხერხდა უკან დაბრუნება: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "დასრულდა" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "ფაილი %s დაბრუნდა ვერსიაზე %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "შეცდომა" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "ვერ მოხერხდა %s ფაილის %s ვერსიაზე დაბრუნება" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "ძველი ვერსია არ არსებობს" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "გზა არ არის მითითებული" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "ვერსიები" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "დააბრუნეთ ფაილი წინა პოზიციაზე revert ღილაკზე დაჭერით" +msgstr "" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index ff6c7f4124..bc61b32b51 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# drlinux64 , 2012 -# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -21,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "დახმარება" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "პირადი" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "პარამეტრები" +msgstr "" #: app.php:385 msgid "Users" -msgstr "მომხმარებელი" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "აპლიკაციები" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "ადმინისტრატორი" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP download–ი გათიშულია" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "უკან ფაილებში" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "ვერ განისაზღვრა" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "აპლიკაცია არ არის აქტიური" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "ავთენტიფიკაციის შეცდომა" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "ფაილები" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "ტექსტი" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "სურათები" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "დააყენეთ ადმინისტრატორის სახელი." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "დააყენეთ ადმინისტრატორის პაროლი." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s შეიყვანეთ ბაზის იუზერნეიმი." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s შეიყვანეთ ბაზის სახელი." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s არ მიუთითოთ წერტილი ბაზის სახელში" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s მიუთითეთ ბაზის ჰოსტი." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "DB შეცდომა: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Offending ბრძანება იყო: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL მომხმარებელი '%s'@'localhost' უკვე არსებობს." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL მომხმარებელი '%s'@'%%' უკვე არსებობს" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "წამის წინ" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 წუთის წინ" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d წუთის წინ" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 საათის წინ" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d საათის წინ" +msgstr "" #: template.php:118 msgid "today" -msgstr "დღეს" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "გუშინ" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d დღის წინ" +msgstr "" #: template.php:121 msgid "last month" -msgstr "გასულ თვეში" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d თვის წინ" +msgstr "" #: template.php:123 msgid "last year" -msgstr "ბოლო წელს" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "წლის წინ" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s ხელმისაწვდომია. მიიღეთ უფრო მეტი ინფორმაცია" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "განახლებულია" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "განახლების ძებნა გათიშულია" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" +msgstr "" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 7b4af5f134..6745031230 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# drlinux64 , 2012 -# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -21,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "აპლიკაციების სია ვერ ჩამოიტვირთა App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "ავთენტიფიკაციის შეცდომა" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -34,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "დისფლეის სახელის შეცვლა ვერ მოხერხდა" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "ჯგუფი უკვე არსებობს" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "ჯგუფის დამატება ვერ მოხერხდა" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "ვერ მოხერხდა აპლიკაციის ჩართვა." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "იმეილი შენახულია" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "არასწორი იმეილი" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "ჯგუფის წაშლა ვერ მოხერხდა" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "ენა შეცვლილია" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "არასწორი მოთხოვნა" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "ვერ მოხერხდა აპლიკაციის განახლება." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "განაახლე {appversion}–მდე" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "გამორთვა" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "ჩართვა" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "დაიცადეთ...." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "შეცდომა" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "მიმდინარეობს განახლება...." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "შეცდომა აპლიკაციის განახლების დროს" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "განახლებულია" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "შენახვა..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "წაშლილი" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "დაბრუნება" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "ჯგუფი" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "ჯგუფის ადმინისტრატორი" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "წაშლა" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "ჯგუფის დამატება" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "უნდა მიუთითოთ არსებული მომხმარებლის სახელი" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "შეცდომა მომხმარებლის შექმნისას" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "უნდა მიუთითოთ არსებული პაროლი" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "უსაფრთხოების გაფრთხილება" +msgstr "" #: templates/admin.php:18 msgid "" @@ -182,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "თქვენი data დირექტორია და ფაილები არის დაშვებადი ინტერნეტიდან. .htaccess ფაილი რომელსაც ownCloud გვთავაზობს არ მუშაობს. ჩვენ გირჩევთ რომ თქვენი ვებსერვერი დააკონფიგურიროთ ისე რომ data დირექტორია არ იყოს დაშვებადი, ან გაიტანოთ data დირექტორია ვებსერვერის document root დირექტორიის გარეთ." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "გაფრთხილება დაყენებისას" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "მოდული 'fileinfo' არ არსებობს" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "ლოკალიზაცია არ მუშაობს" +msgstr "" #: templates/admin.php:63 #, php-format @@ -219,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "თქვენი ownCloud სერვერი ვერ აყენებს %s სისტემურ ენას. ეს გულისხმობს იმას რომ შეიძლება შეიქმნას პრობლემა გარკვეულ სიმბოლოებზე ფაილის სახელებში. ჩვენ გიჩევთ რომ დააინსტალიროთ საჭირო პაკეტები თქვენს სისტემაზე იმისათვის რომ იყოს %s –ის მხარდაჭერა." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "ინტერნეტ კავშირი არ მუშაობს" +msgstr "" #: templates/admin.php:78 msgid "" @@ -233,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "ownCloud სერვერს არ გააჩნია ინტერნეტთან კავშირი. ეს ნიშნავს იმას რომ გარკვეული ფუნქციები როგორიცაა ექსტერნალ საცავების მონტირება, შეტყობინებები განახლების შესახებ ან სხვადასხვა 3rd აპლიკაციების ინსტალაცია არ იმუშავებს. ფაილებთან წვდომა გარე სამყაროდან და შეტყობინების იმეილებიც აგრეთვე არ იმუშავებს. ჩვენ გირჩევთ რომ ჩართოთ ინტერნეტ კავშირი ამ სერვერისთვის იმისათვის რომ გქონდეთ ownCloud–ის ყველა ფუნქცია გააქტიურებული." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron–ი" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php რეგისტრირებულია webcron სერვისად. გაუშვით cron.php გვერდი რომელიც მოთავსებულია owncloud root დირექტორიაში, წუთში ერთხელ http–ით." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "გამოიყენე სისტემური cron სერვისი. გაუშვით cron.php ფაილი owncloud ფოლდერიდან სისტემურ cronjob–ში წუთში ერთხელ." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "გაზიარება" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Share API–ის ჩართვა" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "ლინკების დაშვება" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "გადაზიარების დაშვება" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "უსაფრთხოება" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "HTTPS–ის ჩართვა" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "ვაიძულოთ მომხმარებლები რომ დაუკავშირდნენ ownCloud დაცული კავშირით (https)." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "გთხოვთ დაუკავშირდეთ ownCloud–ს HTTPS–ით რომ შეძლოთ SSL–ის ჩართვა გამორთვა." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "ლოგი" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "ლოგირების დონე" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "უფრო მეტი" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "naklebi" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "ვერსია" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -338,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "წარმოებულია ownCloud community–ის მიერ. source code ვრცელდება AGPL ლიცენზიის ფარგლებში." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "დაამატე შენი აპლიკაცია" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "უფრო მეტი აპლიკაციები" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "აირჩიეთ აპლიკაცია" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-ლიცენსირებულია " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "განახლება" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "მომხმარებლის დოკუმენტაცია" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "ადმინისტრატორის დოკუმენტაცია" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "ონლაინ დოკუმენტაცია" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "ფორუმი" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "ბაგთრექერი" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "კომერციული მხარდაჭერა" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "აპლიკაცია ფაილების სინქრონიზაციისთვის" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "მაჩვენე თავიდან გაშვებული ვიზარდი" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "პაროლი" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "თქვენი პაროლი შეიცვალა" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "თქვენი პაროლი არ შეიცვალა" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "მიმდინარე პაროლი" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "ახალი პაროლი" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "პაროლის შეცვლა" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "დისპლეის სახელი" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "იმეილი" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "თქვენი იმეილ მისამართი" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "ენა" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "თარგმნის დახმარება" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "მომხმარებლის სახელი" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "შექმნა" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "საწყისი საცავი" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "ულიმიტო" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "სხვა" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "საცავი" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "შეცვალე დისფლეის სახელი" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "დააყენეთ ახალი პაროლი" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "საწყისი პარამეტრები" +msgstr "" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 6931493d23..feae3fd57a 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -20,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "შეცდომა სერვერის კონფიგურაციის წაშლისას" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "კონფიგურაცია მართებულია და კავშირი დამყარდება!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "კონფიგურაცია არ არის მართებული. გთხოვთ ჩაიხედოთ დეტალური ინფორმაციისთვის ownCloud –ის ლოგში." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "წაშლა ვერ განხორციელდა" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "დაბრუნდებით სერვერის წინა კონფიგურაციაში?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "დავტოვოთ პარამეტრები?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "სერვერის პარამეტრების დამატება ვერ მოხერხდა" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "კავშირის ტესტირება მოხერხდა" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "კავშირის ტესტირება ვერ მოხერხდა" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "წაშლის დადასტურება" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "გაფრთხილება: აპლიკაციის user_ldap და user_webdavauth არათავსებადია. თქვენ შეიძლება შეეჩეხოთ მოულოდნელ შშედეგებს. თხოვეთ თქვენს ადმინისტრატორს ჩათიშოს ერთერთი." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "გაფრთხილება: PHP LDAP მოდული არ არის ინსტალირებული, ბექენდი არ იმუშავებს. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "სერვერის პარამეტრები" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "სერვერის პარამეტრების დამატება" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "ჰოსტი" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "თქვენ შეგიძლიათ გამოტოვოთ პროტოკოლი. გარდა ამისა გჭირდებათ SSL. შემდეგ დაიწყეთ ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "საწყისი DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "ერთი საწყისი DN ერთ ხაზზე" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "მომხმარებლის DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "მომხმარებლის DN რომელთანაც უნდა მოხდეს დაკავშირება მოხდება შემდეგნაირად მაგ: uid=agent,dc=example,dc=com. ხოლო ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "პაროლი" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "მომხმარებლის ფილტრი" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "როცა შემოსვლა განხორციელდება ასეიძლება მოვახდინოთ გაფილტვრა. %%uid შეიცვლება იუზერნეიმით მომხმარებლის ველში." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "გამოიყენეთ %%uid დამასრულებელი მაგ: \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "მომხმარებლებიის სიის ფილტრი" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "გაფილტვრა განხორციელდება, როცა მომხმარებლების სია ჩამოიტვირთება." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "ჯგუფის ფილტრი" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "გაფილტვრა განხორციელდება, როცა ჯგუფის სია ჩამოიტვირთება." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "კავშირის პარამეტრები" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "კონფიგურაცია აქტიურია" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "როცა გადანიშნულია, ეს კონფიგურაცია გამოტოვებული იქნება." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "პორტი" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "ბექაფ (რეპლიკა) ჰოსტი" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "მიუთითეთ რაიმე ბექაფ ჰოსტი. ის უნდა იყოს ძირითადი LDAP/AD სერვერის რეპლიკა." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "ბექაფ (რეპლიკა) პორტი" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "გამორთეთ ძირითადი სერვერი" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "როცა მონიშნულია, ownCloud დაუკავშირდება მხოლოდ რეპლიკა სერვერს." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "გამოიყენეთ TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "არ გამოიყენოთ დამატებით LDAPS კავშირი. ის წარუმატებლად დასრულდება." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP server (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "გამორთეთ SSL სერთიფიკატის ვალიდაცია." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "იმ შემთხვევაში თუ მუშაობს მხოლოდ ეს ოფცია, დააიმპორტეთ LDAP სერვერის SSL სერთიფიკატი თქვენს ownCloud სერვერზე." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "არ არის რეკომენდირებული, გამოიყენეთ მხოლოდ სატესტოდ." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "ქეშის სიცოცხლის ხანგრძლივობა" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "წამებში. ცვლილება ასუფთავებს ქეშს." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "დირექტორიის პარამეტრები" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "მომხმარებლის დისფლეის სახელის ფილდი" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP ატრიბუტი მომხმარებლის ownCloud სახელის გენერაციისთვის." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "ძირითად მომხმარებელთა სია" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "ერთი მომხმარებლის საწყისი DN ერთ ხაზზე" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "მომხმარებლის ძებნის ატრიბუტი" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "ოფციონალური; თითო ატრიბუტი თითო ხაზზე" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "ჯგუფის დისფლეის სახელის ფილდი" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP ატრიბუტი ჯგუფის ownCloud სახელის გენერაციისთვის." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "ძირითად ჯგუფთა სია" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "ერთი ჯგუფის საწყისი DN ერთ ხაზზე" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "ჯგუფური ძებნის ატრიბუტი" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "ჯგუფის წევრობის ასოციაცია" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "სპეციალური ატრიბუტები" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "ქვოტას ველი" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "საწყისი ქვოტა" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "ბაიტებში" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "იმეილის ველი" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "მომხმარებლის Home დირექტორიის სახელების დარქმევის წესი" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "დატოვეთ ცარიელი მომხმარებლის სახელი (default). სხვა დანარჩენში მიუთითეთ LDAP/AD ატრიბუტი." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "კავშირის ტესტირება" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "დახმარება" +msgstr "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 481dd8e0bb..7a0316b7b7 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -293,7 +293,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "" @@ -409,7 +409,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "" @@ -519,37 +519,37 @@ msgstr "" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" @@ -561,33 +561,33 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 47b4157d6f..7e61c23fc1 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index dba23393ea..602b35e3e8 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index 6012a6d392..d73e3f29a7 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index e561733a10..17f0921f70 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 12ddf3ce85..1886595cea 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/files_versions.po b/l10n/kn/files_versions.po index c15d71b56c..33d7a4a3b2 100644 --- a/l10n/kn/files_versions.po +++ b/l10n/kn/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 836abc39cd..3a4a761994 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 26e7fdea6d..034be72d0d 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index 76ed5e5bc5..3b3ac191a8 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 4c531cc2d3..47c57012a2 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# aoiob4305 , 2013 -# 남자사람 , 2012 -# yunhye , 2012 -# Shinjo Park , 2013 -# Shinjo Park , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -25,34 +20,34 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "%s 님이 파일을 공유하였습니다" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "%s 님이 폴더를 공유하였습니다" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "%s 님이 파일 \"%s\"을(를) 공유하였습니다. 여기에서 다운로드할 수 있습니다: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "%s 님이 폴더 \"%s\"을(를) 공유하였습니다. 여기에서 다운로드할 수 있습니다: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "분류 형식이 제공되지 않았습니다." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "추가할 분류가 없습니까?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -63,184 +58,184 @@ msgstr "" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "객체 형식이 제공되지 않았습니다." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID가 제공되지 않았습니다." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "책갈피에 %s을(를) 추가할 수 없었습니다." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "삭제할 분류를 선택하지 않았습니다." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "책갈피에서 %s을(를) 삭제할 수 없었습니다." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "일요일" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "월요일" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "화요일" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "수요일" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "목요일" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "금요일" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "토요일" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "1월" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "2월" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "3월" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "4월" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "5월" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "6월" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "7월" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "8월" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "9월" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "10월" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "11월" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "12월" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "설정" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "초 전" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1분 전" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes}분 전" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1시간 전" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours}시간 전" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "오늘" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "어제" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days}일 전" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "지난 달" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months}개월 전" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "개월 전" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "작년" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "년 전" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "승락" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "취소" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "선택" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "예" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "아니요" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "객체 유형이 지정되지 않았습니다." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -248,236 +243,236 @@ msgstr "객체 유형이 지정되지 않았습니다." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "오류" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "앱 이름이 지정되지 않았습니다." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "필요한 파일 {file}이(가) 설치되지 않았습니다!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "공유됨" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "공유" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "공유하는 중 오류 발생" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "공유 해제하는 중 오류 발생" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "권한 변경하는 중 오류 발생" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "{owner} 님이 여러분 및 그룹 {group}와(과) 공유 중" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner} 님이 공유 중" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "다음으로 공유" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "URL 링크로 공유" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "암호 보호" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "암호" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "이메일 주소" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "전송" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "만료 날짜 설정" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "만료 날짜" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "이메일로 공유:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "발견된 사람 없음" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "다시 공유할 수 없습니다" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "{user} 님과 {item}에서 공유 중" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "공유 해제" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "편집 가능" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "접근 제어" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "만들기" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "업데이트" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "삭제" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "공유" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "암호로 보호됨" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "만료 날짜 해제 오류" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "만료 날짜 설정 오류" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "전송 중..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "이메일 발송됨" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "업데이트가 실패하였습니다. 이 문제를 ownCloud 커뮤니티에 보고해 주십시오." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "업데이트가 성공하였습니다. ownCloud로 돌아갑니다." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud 암호 재설정" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "이메일로 암호 재설정 링크를 보냈습니다." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "초기화 이메일을 보냈습니다." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "요청이 실패했습니다!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "사용자 이름" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "요청 초기화" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "암호가 재설정되었습니다" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "로그인 화면으로" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "새 암호" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "암호 재설정" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "개인" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "사용자" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "앱" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "관리자" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "도움말" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "접근 금지됨" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "클라우드를 찾을 수 없습니다" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "분류 편집" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "추가" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "보안 경고" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -491,13 +486,13 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "안전한 난수 생성기를 사용할 수 없습니다. PHP의 OpenSSL 확장을 활성화해 주십시오." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "안전한 난수 생성기를 사용하지 않으면 공격자가 암호 초기화 토큰을 추측하여 계정을 탈취할 수 있습니다." +msgstr "" #: templates/installation.php:39 msgid "" @@ -514,83 +509,83 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "관리자 계정 만들기" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "고급" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "데이터 폴더" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "데이터베이스 설정" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "사용될 예정" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "데이터베이스 사용자" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "데이터베이스 암호" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "데이터베이스 이름" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "데이터베이스 테이블 공간" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "데이터베이스 호스트" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "설치 완료" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "내가 관리하는 웹 서비스" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "로그아웃" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "자동 로그인이 거부되었습니다!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "최근에 암호를 변경하지 않았다면 계정이 탈취되었을 수도 있습니다!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "계정의 안전을 위하여 암호를 변경하십시오." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "암호를 잊으셨습니까?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "기억하기" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "로그인" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -598,13 +593,13 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "이전" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "다음" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "ownCloud를 버전 %s(으)로 업데이트합니다. 잠시 기다려 주십시오." +msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 9184f03d5e..b56b48d5ec 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# aoiob4305 , 2013 -# 남자사람 , 2012 -# Harim Park , 2013 -# yunhye , 2012 -# Shinjo Park , 2013 -# Shinjo Park , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -26,51 +20,51 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s 항목을 이딩시키지 못하였음" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "파일 이름바꾸기 할 수 없음" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "업로드에 성공하였습니다." +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "업로드한 파일이 HTML 문서에 지정한 MAX_FILE_SIZE보다 더 큼" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "파일이 부분적으로 업로드됨" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "업로드된 파일 없음" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "임시 폴더가 사라짐" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "디스크에 쓰지 못했습니다" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -78,15 +72,15 @@ msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "올바르지 않은 디렉터리입니다." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "파일" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "공유" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -94,39 +88,39 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "삭제" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "이름 바꾸기" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "보류 중" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name}이(가) 이미 존재함" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "바꾸기" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "이름 제안" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "취소" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{old_name}이(가) {new_name}(으)로 대체됨" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "실행 취소" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -134,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "파일 1개 업로드 중" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -142,140 +136,140 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' 는 올바르지 않은 파일 이름 입니다." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "파일 이름이 비어 있을 수 없습니다." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 동기화할 수 없습니다!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "여유 공간이 부족합니다" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "업로드가 취소되었습니다." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL을 입력해야 합니다." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "폴더 이름이 유효하지 않습니다. " +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "오류" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "이름" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "크기" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "수정됨" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "폴더 1개" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "폴더 {count}개" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "파일 1개" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "파일 {count}개" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "업로드" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "파일 처리" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "최대 업로드 크기" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "최대 가능:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "다중 파일 및 폴더 다운로드에 필요합니다." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP 다운로드 허용" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0은 무제한입니다" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP 파일 최대 크기" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "저장" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "새로 만들기" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "텍스트 파일" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "폴더" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "링크에서" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -283,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "업로드 취소" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -291,34 +285,34 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "내용이 없습니다. 업로드할 수 있습니다!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "다운로드" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "공유 해제" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "업로드 용량 초과" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "파일을 검색하고 있습니다. 기다려 주십시오." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "현재 검색" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "파일 시스템 캐시 업그레이드 중..." +msgstr "" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 9a2fc1b35b..474236bda0 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# 남자사람 , 2012. -# Shinjo Park , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -21,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "암호화" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -37,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "없음" +msgstr "" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index c8d11aa32e..9476492736 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# aoiob4305 , 2013 -# 남자사람 , 2012 -# Park Shinjo , 2013 -# Shinjo Park , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -23,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "접근 허가됨" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Dropbox 저장소 설정 오류" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "접근 권한 부여" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "올바른 Dropbox 앱 키와 암호를 입력하십시오." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Google 드라이브 저장소 설정 오류" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." +msgstr "" #: lib/config.php:437 msgid "" @@ -63,11 +59,11 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "외부 저장소" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "폴더 이름" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -75,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "설정" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "옵션" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "적용 가능" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -91,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "설정되지 않음" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "모든 사용자" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "그룹" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "사용자" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "삭제" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "사용자 외부 저장소 사용" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "사용자별 외부 저장소 마운트 허용" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL 루트 인증서" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "루트 인증서 가져오기" +msgstr "" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 9810e11baf..d9c75a5c1c 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# 남자사람 , 2012. -# Park Shinjo , 2013. -# Shinjo Park , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -22,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "암호" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "제출" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s 님이 파일 %s을(를) 공유하였습니다" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "다운로드" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "다음 항목을 미리 볼 수 없음:" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "내가 관리하는 웹 서비스" +msgstr "" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index fae4215410..676ff0ad0e 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "오류" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "이름" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "폴더 1개" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "폴더 {count}개" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "파일 1개" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "파일 {count}개" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -73,11 +73,11 @@ msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "복원" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "삭제" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 101de33dbe..b861556e02 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# 남자사람 , 2012. -# Shinjo Park , 2012. -# Sung Jin Gang , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -23,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "되돌릴 수 없습니다: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "완료" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "파일 %s를 버전 %s로 변경하였습니다." +msgstr "" #: history.php:49 msgid "failure" -msgstr "실패" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "파일 %s를 버전 %s로 되돌리지 못했습니다." +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "오래된 버전을 사용할 수 없습니다" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "경로를 알수 없습니다." +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "버젼" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "변경 버튼을 클릭하여 이전 버전의 파일로 변경할 수 있습니다." +msgstr "" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 2c97ea10db..61f8441c96 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# 남자사람 , 2012 -# Shinjo Park , 2013 -# Shinjo Park , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -22,71 +19,71 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "도움말" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "개인" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "설정" +msgstr "" #: app.php:385 msgid "Users" -msgstr "사용자" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "앱" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "관리자" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP 다운로드가 비활성화되었습니다." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "파일을 개별적으로 다운로드해야 합니다." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "파일로 돌아가기" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "결정할 수 없음" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "앱이 활성화되지 않았습니다" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "인증 오류" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "토큰이 만료되었습니다. 페이지를 새로 고치십시오." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "파일" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "텍스트" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "그림" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -116,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "초 전" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1분 전" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d분 전" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1시간 전" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d시간 전" +msgstr "" #: template.php:118 msgid "today" -msgstr "오늘" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "어제" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d일 전" +msgstr "" #: template.php:121 msgid "last month" -msgstr "지난 달" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d개월 전" +msgstr "" #: template.php:123 msgid "last year" -msgstr "작년" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "년 전" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s을(를) 사용할 수 있습니다. 자세한 정보 보기" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "최신" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "업데이트 확인이 비활성화됨" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "분류 \"%s\"을(를) 찾을 수 없습니다." +msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index ad6bcf70a8..56b80636ef 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# aoiob4305 , 2013 -# 남자사람 , 2012 -# Harim Park , 2013 -# yunhye , 2012 -# Shinjo Park , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -24,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "앱 스토어에서 목록을 가져올 수 없습니다" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "인증 오류" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -41,53 +36,53 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "그룹이 이미 존재합니다." +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "그룹을 추가할 수 없습니다." +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "앱을 활성화할 수 없습니다." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "이메일 저장됨" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "잘못된 이메일 주소" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "그룹을 삭제할 수 없습니다." +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "사용자를 삭제할 수 없습니다." +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "언어가 변경되었습니다" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "잘못된 요청" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "관리자 자신을 관리자 그룹에서 삭제할 수 없습니다" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "그룹 %s에 사용자를 추가할 수 없습니다." +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "그룹 %s에서 사용자를 삭제할 수 없습니다." +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -99,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "비활성화" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "활성화" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -111,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "오류" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -127,15 +122,15 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "저장 중..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "삭제" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "되돌리기" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -144,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "그룹" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "그룹 관리자" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "삭제" +msgstr "" #: js/users.js:262 msgid "add group" @@ -172,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "한국어" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "보안 경고" +msgstr "" #: templates/admin.php:18 msgid "" @@ -185,11 +180,11 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "데이터 디렉터리와 파일을 인터넷에서 접근할 수 있는 것 같습니다. ownCloud에서 제공한 .htaccess 파일이 작동하지 않습니다. 웹 서버를 다시 설정하여 데이터 디렉터리에 접근할 수 없도록 하거나 문서 루트 바깥쪽으로 옮기는 것을 추천합니다." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "설정 경고" +msgstr "" #: templates/admin.php:32 msgid "" @@ -323,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "더 중요함" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "덜 중요함" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "버전" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -341,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "앱 추가" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "더 많은 앱" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "앱 선택" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "apps.owncloud.com에 있는 앱 페이지를 참고하십시오" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-라이선스됨: " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "업데이트" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "사용자 문서" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "관리자 문서" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "온라인 문서" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "포럼" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "버그 트래커" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "상업용 지원" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "현재 공간 %s/%s을(를) 사용 중입니다" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "앱을 이용하여 당신의 파일을 동기화 할 수 있습니다." +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "첫 실행 마법사 다시 보이기" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "암호" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "암호가 변경되었습니다" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "암호를 변경할 수 없음" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "현재 암호" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "새 암호" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "암호 변경" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "표시 이름" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "이메일" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "이메일 주소" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오." +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "언어" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "번역 돕기" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오." +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "로그인 이름" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "만들기" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "기본 저장소" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "무제한" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "기타" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "저장소" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "표시 이름 변경" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "새 암호 설정" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "기본값" +msgstr "" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 12de201d71..77060318ff 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# 남자사람 , 2012. -# Harim Park , 2013. -# Shinjo Park , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -43,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "삭제 실패" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -51,7 +47,7 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "설정을 유지합니까?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" @@ -59,11 +55,11 @@ msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "연결 시험 성공" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "연결 시험 실패" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" @@ -78,13 +74,13 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "경고: user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여 둘 중 하나만 사용하도록 하십시오." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "경고: PHP LDAP 모듈이 비활성화되어 있거나 설치되어 있지 않습니다. 백엔드를 사용할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" @@ -96,91 +92,91 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "호스트" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오." +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "기본 DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "기본 DN을 한 줄에 하나씩 입력하십시오" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 수 있습니다." +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "사용자 DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "바인딩 작업을 수행할 클라이언트 사용자 DN입니다. 예를 들어서 uid=agent,dc=example,dc=com입니다. 익명 접근을 허용하려면 DN과 암호를 비워 두십시오." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "암호" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "익명 접근을 허용하려면 DN과 암호를 비워 두십시오." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "사용자 로그인 필터" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "로그인을 시도할 때 적용할 필터입니다. %%uid는 로그인 작업에서의 사용자 이름으로 대체됩니다." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "%%uid 자리 비움자를 사용하십시오. 예제: \"uid=%%uid\"\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "사용자 목록 필터" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "사용자를 검색할 때 적용할 필터를 정의합니다." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "자리 비움자를 사용할 수 없습니다. 예제: \"objectClass=person\"" +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "그룹 필터" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "그룹을 검색할 때 적용할 필터를 정의합니다." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "자리 비움자를 사용할 수 없습니다. 예제: \"objectClass=posixGroup\"" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "연결 설정" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "구성 활성화" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." @@ -188,11 +184,11 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "포트" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "백업 (복제) 포트" +msgstr "" #: templates/settings.php:72 msgid "" @@ -202,11 +198,11 @@ msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "백업 (복제) 포트" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "주 서버 비활성화" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." @@ -214,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "TLS 사용" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -222,21 +218,21 @@ msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "서버에서 대소문자를 구분하지 않음 (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "SSL 인증서 유효성 검사를 해제합니다." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "이 옵션을 사용해야 연결할 수 있는 경우에는 LDAP 서버의 SSL 인증서를 ownCloud로 가져올 수 있습니다." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "추천하지 않음, 테스트로만 사용하십시오." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -244,31 +240,31 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "초. 항목 변경 시 캐시가 갱신됩니다." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "디렉토리 설정" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "사용자의 표시 이름 필드" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP 속성은 사용자의 ownCloud 이름을 생성하기 위해 사용합니다." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "기본 사용자 트리" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "사용자 DN을 한 줄에 하나씩 입력하십시오" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "사용자 검색 속성" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" @@ -276,27 +272,27 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "그룹의 표시 이름 필드" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP 속성은 그룹의 ownCloud 이름을 생성하기 위해 사용합니다." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "기본 그룹 트리" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "그룹 기본 DN을 한 줄에 하나씩 입력하십시오" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "그룹 검색 속성" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "그룹-회원 연결" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -312,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "바이트" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -326,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "사용자 이름을 사용하려면 비워 두십시오(기본값). 기타 경우 LDAP/AD 속성을 지정하십시오." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -334,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "도움말" +msgstr "" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 214b67e0c4..cf0090fc98 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -159,7 +158,7 @@ msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "ده‌ستكاری" +msgstr "" #: js/js.js:718 msgid "seconds ago" @@ -244,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "هه‌ڵه" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -294,9 +293,9 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "وشەی تێپەربو" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -410,9 +409,9 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" -msgstr "ناوی به‌کارهێنه‌ر" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" @@ -428,11 +427,11 @@ msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "وشەی نهێنی نوێ" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "دووباره‌ كردنه‌وه‌ی وشه‌ی نهێنی" +msgstr "" #: strings.php:5 msgid "Personal" @@ -440,19 +439,19 @@ msgstr "" #: strings.php:6 msgid "Users" -msgstr "به‌كارهێنه‌ر" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "به‌رنامه‌كان" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "یارمەتی" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" @@ -460,7 +459,7 @@ msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "هیچ نه‌دۆزرایه‌وه‌" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -468,7 +467,7 @@ msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "زیادکردن" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -514,91 +513,91 @@ msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "هه‌ڵبژاردنی پیشكه‌وتوو" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "زانیاری فۆڵده‌ر" +msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" -msgstr "به‌كارهێنه‌ری داتابه‌یس" +msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" -msgstr "وشه‌ی نهێنی داتا به‌یس" +msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" -msgstr "ناوی داتابه‌یس" +msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" -msgstr "هۆستی داتابه‌یس" +msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" -msgstr "كۆتایی هات ده‌ستكاریه‌كان" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "چوونەدەرەوە" +msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "پێشتر" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "دواتر" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 2d8063ea29..ad6cb5291c 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -181,7 +181,7 @@ msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -189,11 +189,11 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "هه‌ڵه" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "ناو" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" @@ -221,7 +221,7 @@ msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "بارکردن" +msgstr "" #: templates/admin.php:5 msgid "File handling" @@ -253,7 +253,7 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "پاشکه‌وتکردن" +msgstr "" #: templates/index.php:7 msgid "New" @@ -265,7 +265,7 @@ msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "بوخچه" +msgstr "" #: templates/index.php:14 msgid "From link" @@ -289,7 +289,7 @@ msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "داگرتن" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index afa8a7eff0..b71791aebd 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hozha Koyi , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "نهێنیکردن" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "هیچ" +msgstr "" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 82b7d02e7a..22794be05f 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -63,7 +63,7 @@ msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "ناوی بوخچه" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -99,7 +99,7 @@ msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "به‌كارهێنه‌ر" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 5294fa1042..887fea5723 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hozha Koyi , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "تێپه‌ڕه‌وشه" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "ناردن" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "داگرتن" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" +msgstr "" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 466bf259a3..95d53077be 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "هه‌ڵه" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "ناو" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po index 8f2cdbd21e..02dce79934 100644 --- a/l10n/ku_IQ/files_versions.po +++ b/l10n/ku_IQ/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hozha Koyi , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index ba160fa439..ade99f522e 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "یارمەتی" +msgstr "" #: app.php:362 msgid "Personal" @@ -27,11 +27,11 @@ msgstr "" #: app.php:373 msgid "Settings" -msgstr "ده‌ستكاری" +msgstr "" #: app.php:385 msgid "Users" -msgstr "به‌كارهێنه‌ر" +msgstr "" #: app.php:398 msgid "Apps" @@ -39,7 +39,7 @@ msgstr "" #: app.php:406 msgid "Admin" -msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 51b5b0657e..745b808ab7 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -98,7 +98,7 @@ msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "چالاککردن" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -106,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "هه‌ڵه" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -122,7 +122,7 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "پاشکه‌وتده‌کات..." +msgstr "" #: js/users.js:43 msgid "deleted" @@ -360,7 +360,7 @@ msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "نوێکردنه‌وه" +msgstr "" #: templates/help.php:4 msgid "User Documentation" @@ -401,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "وشەی تێپەربو" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -417,7 +417,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "وشەی نهێنی نوێ" +msgstr "" #: templates/personal.php:44 msgid "Change password" @@ -429,7 +429,7 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "ئیمه‌یل" +msgstr "" #: templates/personal.php:70 msgid "Your email address" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index cc74bf7a41..b5d79c6dd4 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "یارمەتی" +msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 64ab9ca7e9..27f48079cc 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sim0n , 2013 -# sim0n , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -49,7 +47,7 @@ msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Keng Kategorie fir bäizesetzen?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -75,7 +73,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Keng Kategorien ausgewielt fir ze läschen." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -84,83 +82,83 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Sonndes" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Méindes" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Dënschdes" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Mëttwoch" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Donneschdes" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Freides" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Samschdes" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februar" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Mäerz" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Abrëll" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mee" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Juni" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Juli" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "August" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Dezember" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Astellungen" +msgstr "" #: js/js.js:718 msgid "seconds ago" @@ -176,11 +174,11 @@ msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "vrun 1 Stonn" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "vru {hours} Stonnen" +msgstr "" #: js/js.js:723 msgid "today" @@ -196,43 +194,43 @@ msgstr "" #: js/js.js:726 msgid "last month" -msgstr "Läschte Mount" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "vru {months} Méint" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "Méint hier" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "Läscht Joer" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "Joren hier" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "OK" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Ofbriechen" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Auswielen" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Jo" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nee" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -245,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -261,7 +259,7 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Deelen" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" @@ -297,7 +295,7 @@ msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Passwuert" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -333,7 +331,7 @@ msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Net méi deelen" +msgstr "" #: js/share.js:320 msgid "can edit" @@ -345,7 +343,7 @@ msgstr "" #: js/share.js:325 msgid "create" -msgstr "erstellen" +msgstr "" #: js/share.js:328 msgid "update" @@ -353,11 +351,11 @@ msgstr "" #: js/share.js:331 msgid "delete" -msgstr "läschen" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "deelen" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" @@ -392,15 +390,15 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud Passwuert reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Benotz folgende Link fir däi Passwuert ze reseten: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Du kriss en Link fir däin Passwuert nei ze setzen via Email geschéckt." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -413,68 +411,68 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Benotzernumm" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Reset ufroen" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Dän Passwuert ass zeréck gesat gin" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Op d'Login Säit" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Neit Passwuert" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Passwuert zeréck setzen" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Perséinlech" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Benotzer" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Applicatiounen" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Hëllef" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Access net erlaabt" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud net fonnt" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Kategorien editéieren" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Bäisetzen" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Sécherheets Warnung" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -511,57 +509,57 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "En Admin Account uleeën" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avancéiert" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Daten Dossier" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Datebank konfiguréieren" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "wärt benotzt ginn" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Datebank Benotzer" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Datebank Passwuert" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Datebank Numm" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Datebank Tabelle-Gréisst" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Datebank Server" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Installatioun ofschléissen" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Web Servicer ënnert denger Kontroll" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Ausloggen" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" @@ -579,15 +577,15 @@ msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Passwuert vergiess?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "verhalen" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Log dech an" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -595,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "zeréck" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "weider" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 50daecd019..bff6589e1e 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sim0n , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -38,7 +37,7 @@ msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" +msgstr "" #: ajax/upload.php:27 msgid "" @@ -49,23 +48,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Et ass keng Datei ropgelueden ginn" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Et feelt en temporären Dossier" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Konnt net op den Disk schreiwen" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -77,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Dateien" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Deelen" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -89,7 +88,7 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Läschen" +msgstr "" #: js/fileactions.js:194 msgid "Rename" @@ -105,7 +104,7 @@ msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "ersetzen" +msgstr "" #: js/filelist.js:252 msgid "suggest name" @@ -113,7 +112,7 @@ msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "ofbriechen" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" @@ -121,7 +120,7 @@ msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "réckgängeg man" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -165,7 +164,7 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -173,12 +172,12 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Upload ofgebrach." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." @@ -190,19 +189,19 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Numm" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Gréisst" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Geännert" +msgstr "" #: js/files.js:893 msgid "1 folder" @@ -222,51 +221,51 @@ msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Eroplueden" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Fichier handling" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximum Upload Gréisst " +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max. méiglech:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Gett gebraucht fir multi-Fichier an Dossier Downloads." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP-download erlaben" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 ass onlimitéiert" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maximal Gréisst fir ZIP Fichieren" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Späicheren" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nei" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Text Fichier" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Dossier" +msgstr "" #: templates/index.php:14 msgid "From link" @@ -278,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Upload ofbriechen" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -286,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Hei ass näischt. Lued eppes rop!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Eroflueden" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Net méi deelen" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Upload ze grouss" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Fichieren gi gescannt, war weg." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Momentane Scan" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 0632e6b5ab..09f6598370 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 2cd6658024..a799638ff9 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -63,7 +63,7 @@ msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Dossiers Numm:" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -95,7 +95,7 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Gruppen" +msgstr "" #: templates/settings.php:100 msgid "Users" @@ -104,7 +104,7 @@ msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Läschen" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index a8c12d1704..224cd29198 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Passwuert" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 046e687bd2..750c603241 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Numm" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Läschen" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index 0daea383b9..7745e418c1 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index b1b27935b8..aa4f876a2f 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -19,15 +19,15 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Hëllef" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Perséinlech" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Astellungen" +msgstr "" #: app.php:385 msgid "Users" @@ -39,7 +39,7 @@ msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." @@ -67,7 +67,7 @@ msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Authentifikatioun's Fehler" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,11 +75,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Dateien" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "SMS" +msgstr "" #: search/provider/file.php:29 msgid "Images" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -198,7 +198,7 @@ msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "vrun 1 Stonn" +msgstr "" #: template.php:117 #, php-format @@ -220,7 +220,7 @@ msgstr "" #: template.php:121 msgid "last month" -msgstr "Läschte Mount" +msgstr "" #: template.php:122 #, php-format @@ -229,11 +229,11 @@ msgstr "" #: template.php:123 msgid "last year" -msgstr "Läscht Joer" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "Joren hier" +msgstr "" #: updater.php:78 #, php-format diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 6b80fc58f2..0b6c6764dd 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sim0n , 2011-2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -20,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Konnt Lescht net vum App Store lueden" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Authentifikatioun's Fehler" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -49,11 +48,11 @@ msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-mail gespäichert" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Ongülteg e-mail" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -65,11 +64,11 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Sprooch huet geännert" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Ongülteg Requête" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -95,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Ofschalten" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Aschalten" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -107,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Fehler" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -123,15 +122,15 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Speicheren..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "geläscht" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "réckgängeg man" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -140,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Gruppen" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Gruppen Admin" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Läschen" +msgstr "" #: js/users.js:262 msgid "add group" @@ -168,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Sécherheets Warnung" +msgstr "" #: templates/admin.php:18 msgid "" @@ -341,7 +340,7 @@ msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Setz deng App bei" +msgstr "" #: templates/apps.php:12 msgid "More Apps" @@ -349,11 +348,11 @@ msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Wiel eng Applikatioun aus" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " @@ -402,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Passwuert" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -410,19 +409,19 @@ msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Konnt däin Passwuert net änneren" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Momentan 't Passwuert" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Neit Passwuert" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Passwuert änneren" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -430,23 +429,23 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Deng Email Adress" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Sprooch" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Hëllef iwwersetzen" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -462,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Erstellen" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -474,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Aner" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 43ff3ad1b1..3fd08f7b04 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Konnt net läschen" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Passwuert" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Hëllef" +msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 23d9115c7f..a9125b82d0 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# andrejuseu , 2012 -# Dr. ROX , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -49,7 +47,7 @@ msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Nepridėsite jokios kategorijos?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -75,7 +73,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Trynimui nepasirinkta jokia kategorija." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -84,95 +82,95 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Sekmadienis" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Pirmadienis" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Antradienis" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Trečiadienis" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Ketvirtadienis" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Penktadienis" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Šeštadienis" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Sausis" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Vasaris" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Kovas" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Balandis" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Gegužė" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Birželis" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Liepa" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Rugpjūtis" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Rugsėjis" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Spalis" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Lapkritis" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Gruodis" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Nustatymai" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "prieš sekundę" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "Prieš 1 minutę" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "Prieš {count} minutes" +msgstr "" #: js/js.js:721 msgid "1 hour ago" @@ -184,19 +182,19 @@ msgstr "" #: js/js.js:723 msgid "today" -msgstr "šiandien" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "vakar" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "Prieš {days} dienas" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "praeitą mėnesį" +msgstr "" #: js/js.js:727 msgid "{months} months ago" @@ -204,35 +202,35 @@ msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "prieš mėnesį" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "praeitais metais" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "prieš metus" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Gerai" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Atšaukti" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Pasirinkite" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Taip" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Ne" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -245,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Klaida" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -261,43 +259,43 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Dalintis" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Klaida, dalijimosi metu" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Klaida, kai atšaukiamas dalijimasis" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Klaida, keičiant privilegijas" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Pasidalino su Jumis ir {group} grupe {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Pasidalino su Jumis {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Dalintis su" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Dalintis nuoroda" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Apsaugotas slaptažodžiu" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Slaptažodis" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -309,67 +307,67 @@ msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Nustatykite galiojimo laiką" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Galiojimo laikas" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Dalintis per el. paštą:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Žmonių nerasta" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Dalijinasis išnaujo negalimas" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Pasidalino {item} su {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Nesidalinti" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "gali redaguoti" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "priėjimo kontrolė" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "sukurti" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "atnaujinti" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "ištrinti" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "dalintis" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Apsaugota slaptažodžiu" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Klaida nuimant galiojimo laiką" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Klaida nustatant galiojimo laiką" +msgstr "" #: js/share.js:604 msgid "Sending ..." @@ -392,15 +390,15 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud slaptažodžio atkūrimas" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Slaptažodio atkūrimui naudokite šią nuorodą: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti slaptažodį." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -413,68 +411,68 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Prisijungimo vardas" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Prašyti nustatymo iš najo" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Jūsų slaptažodis buvo nustatytas iš naujo" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Į prisijungimo puslapį" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Naujas slaptažodis" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Atkurti slaptažodį" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Asmeniniai" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Vartotojai" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Programos" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administravimas" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Pagalba" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Priėjimas draudžiamas" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Negalima rasti" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Redaguoti kategorijas" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Pridėti" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Saugumo pranešimas" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -488,13 +486,13 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Saugaus atsitiktinių skaičių generatoriaus nėra, prašome įjungti PHP OpenSSL modulį." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Be saugaus atsitiktinių skaičių generatoriaus, piktavaliai gali atspėti Jūsų slaptažodį ir pasisavinti paskyrą." +msgstr "" #: templates/installation.php:39 msgid "" @@ -511,83 +509,83 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Sukurti administratoriaus paskyrą" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Išplėstiniai" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Duomenų katalogas" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Nustatyti duomenų bazę" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "bus naudojama" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Duomenų bazės vartotojas" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Duomenų bazės slaptažodis" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Duomenų bazės pavadinimas" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Duomenų bazės loginis saugojimas" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Duomenų bazės serveris" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Baigti diegimą" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "jūsų valdomos web paslaugos" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Atsijungti" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatinis prisijungimas atmestas!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Jei paskutinių metu nekeitėte savo slaptažodžio, Jūsų paskyra gali būti pavojuje!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Prašome pasikeisti slaptažodį dar kartą, dėl paskyros saugumo." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Pamiršote slaptažodį?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "prisiminti" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Prisijungti" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -595,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "atgal" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "kitas" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 74be379f55..71736ccf0c 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# andrejuseu , 2012 -# Denisas Kulumbegašvili <>, 2012 -# Dr. ROX , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -40,7 +37,7 @@ msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Klaidų nėra, failas įkeltas sėkmingai" +msgstr "" #: ajax/upload.php:27 msgid "" @@ -51,23 +48,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE parametrą, kuris yra nustatytas HTML formoje" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Failas buvo įkeltas tik dalinai" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Nebuvo įkeltas nė vienas failas" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Nėra laikinojo katalogo" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Nepavyko įrašyti į diską" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -79,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Failai" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Dalintis" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -91,39 +88,39 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Ištrinti" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Pervadinti" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Laukiantis" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} jau egzistuoja" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "pakeisti" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "pasiūlyti pavadinimą" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "atšaukti" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "pakeiskite {new_name} į {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "anuliuoti" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -131,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "įkeliamas 1 failas" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -167,7 +164,7 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -175,12 +172,12 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Įkėlimas atšauktas." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." @@ -192,83 +189,83 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Klaida" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Pavadinimas" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Dydis" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Pakeista" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 aplankalas" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} aplankalai" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 failas" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} failai" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Įkelti" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Failų tvarkymas" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksimalus įkeliamo failo dydis" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maks. galima:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Reikalinga daugybinui failų ir aplankalų atsisiuntimui." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Įjungti atsisiuntimą ZIP archyvu" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 yra neribotas" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maksimalus ZIP archyvo failo dydis" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Išsaugoti" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Naujas" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Teksto failas" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Katalogas" +msgstr "" #: templates/index.php:14 msgid "From link" @@ -280,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Atšaukti siuntimą" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -288,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Čia tuščia. Įkelkite ką nors!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Atsisiųsti" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Nebesidalinti" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Įkėlimui failas per didelis" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Bandomų įkelti failų dydis viršija maksimalų leidžiamą šiame serveryje" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Skenuojami failai, prašome palaukti." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Šiuo metu skenuojama" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index a3629e2cc4..67c47d7c6c 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dr. ROX , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Šifravimas" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Nieko" +msgstr "" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 912e05548d..123fc3992b 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# andrejuseu , 2012 -# Dr. ROX , 2012 -# Min2liz , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -22,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Priėjimas suteiktas" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Klaida nustatinėjant Dropbox talpyklą" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Suteikti priėjimą" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\"." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Klaida nustatinėjant Google Drive talpyklą" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"" +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Įspėjimas: FTP palaikymas PHP sistemoje nėra įjungtas arba nėra įdiegtas. FTP dalinimosi įjungimas nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas FTP palaikymas. " +msgstr "" #: lib/config.php:437 msgid "" @@ -62,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Išorinės saugyklos" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Katalogo pavadinimas" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Išorinė saugykla" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Konfigūracija" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Nustatymai" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Pritaikyti" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Pridėti saugyklą" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Nieko nepasirinkta" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Visi vartotojai" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupės" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Vartotojai" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Ištrinti" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Įjungti vartotojų išorines saugyklas" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Leisti vartotojams pridėti savo išorines saugyklas" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL sertifikatas" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Įkelti pagrindinį sertifikatą" +msgstr "" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index a2553793fb..906c2a6a6d 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dr. ROX , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index f427f0e01f..5c4542fc6b 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Klaida" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Pavadinimas" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 aplankalas" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} aplankalai" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 failas" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} failai" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Ištrinti" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index 1572027742..04d06f1fc2 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dr. ROX , 2012. -# Mindaugas , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -23,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Nepavyko atstatyti: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "pavyko" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Dokumentas %s buvo atstatytas į versiją %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "klaida" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Dokumento %s nepavyko atstatyti į versiją %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Nėra senų versijų" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Nenurodytas kelias" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versijos" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Atstatykite dokumentą į prieš tai buvusią versiją spausdami ant jo atstatymo mygtuko" +msgstr "" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index a176e307e6..3a097e2766 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# andrejuseu , 2012 -# Dr. ROX , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -21,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Pagalba" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Asmeniniai" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Nustatymai" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Vartotojai" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Programos" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administravimas" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP atsisiuntimo galimybė yra išjungta." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Failai turi būti parsiunčiami vienas po kito." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Atgal į Failus" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -65,23 +63,23 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Programa neįjungta" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Autentikacijos klaida" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Sesija baigėsi. Prašome perkrauti puslapį." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Failai" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Žinučių" +msgstr "" #: search/provider/file.php:29 msgid "Images" @@ -115,88 +113,88 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "prieš kelias sekundes" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "prieš 1 minutę" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "prieš %d minučių" +msgstr "" #: template.php:116 msgid "1 hour ago" @@ -209,20 +207,20 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "šiandien" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "vakar" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "prieš %d dienų" +msgstr "" #: template.php:121 msgid "last month" -msgstr "praėjusį mėnesį" +msgstr "" #: template.php:122 #, php-format @@ -231,24 +229,24 @@ msgstr "" #: template.php:123 msgid "last year" -msgstr "pereitais metais" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "prieš metus" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s yra galimas. Platesnė informacija čia" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "pilnai atnaujinta" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "atnaujinimų tikrinimas išjungtas" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 0be226771e..5ee9f5d492 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# andrejuseu , 2012 -# Dr. ROX , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -21,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Neįmanoma įkelti sąrašo iš Programų Katalogo" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Autentikacijos klaida" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -46,15 +44,15 @@ msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Nepavyksta įjungti aplikacijos." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "El. paštas išsaugotas" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Netinkamas el. paštas" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -66,11 +64,11 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Kalba pakeista" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Klaidinga užklausa" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -96,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Išjungti" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Įjungti" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -108,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Klaida" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -124,7 +122,7 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Saugoma.." +msgstr "" #: js/users.js:43 msgid "deleted" @@ -132,7 +130,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "anuliuoti" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -141,7 +139,7 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupės" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" @@ -149,7 +147,7 @@ msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Ištrinti" +msgstr "" #: js/users.js:262 msgid "add group" @@ -169,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Kalba" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Saugumo pranešimas" +msgstr "" #: templates/admin.php:18 msgid "" @@ -182,7 +180,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Jūsų duomenų aplankalas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess, kuris duodamas, neveikia. Mes rekomenduojame susitvarkyti savo nustatymsu taip, kad failai nebūtų pasiekiami per internetą, arba persikelti juos kitur." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" @@ -320,11 +318,11 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Daugiau" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Mažiau" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" @@ -342,15 +340,15 @@ msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Pridėti programėlę" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Daugiau aplikacijų" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Pasirinkite programą" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" @@ -358,11 +356,11 @@ msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "- autorius" +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Atnaujinti" +msgstr "" #: templates/help.php:4 msgid "User Documentation" @@ -403,27 +401,27 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Slaptažodis" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Jūsų slaptažodis buvo pakeistas" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Neįmanoma pakeisti slaptažodžio" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Dabartinis slaptažodis" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Naujas slaptažodis" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Pakeisti slaptažodį" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -431,23 +429,23 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "El. paštas" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Jūsų el. pašto adresas" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Kalba" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Padėkite išversti" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -463,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Sukurti" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -475,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Kita" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index a27f44400d..c603aa6fc5 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dr. ROX , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -40,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Ištrinti nepavyko" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -125,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Slaptažodis" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -161,7 +160,7 @@ msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Grupės filtras" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." @@ -185,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Prievadas" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -211,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Naudoti TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -223,7 +222,7 @@ msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Išjungti SSL sertifikato tikrinimą." +msgstr "" #: templates/settings.php:77 msgid "" @@ -233,7 +232,7 @@ msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Nerekomenduojama, naudokite tik testavimui." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -331,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Pagalba" +msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 7c6dcac653..eda83c2c97 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# CPDZ , 2012 -# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -22,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Lietotājs %s ar jums dalījās ar datni." +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Lietotājs %s ar jums dalījās ar mapi." +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Lietotājs %s ar jums dalījās ar datni “%s”. To var lejupielādēt šeit — %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Lietotājs %s ar jums dalījās ar mapi “%s”. To var lejupielādēt šeit — %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Kategorijas tips nav norādīts." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Nav kategoriju, ko pievienot?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Šāda kategorija jau eksistē — %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Objekta tips nav norādīts." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID nav norādīts." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Kļūda, pievienojot %s izlasei." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Neviena kategorija nav izvēlēta dzēšanai" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Kļūda, izņemot %s no izlases." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Svētdiena" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Pirmdiena" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Otrdiena" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Trešdiena" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Ceturtdiena" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Piektdiena" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sestdiena" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Janvāris" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februāris" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Marts" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Aprīlis" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maijs" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Jūnijs" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Jūlijs" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Augusts" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Septembris" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktobris" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Novembris" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Decembris" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Iestatījumi" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sekundes atpakaļ" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "pirms 1 minūtes" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "pirms {minutes} minūtēm" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "pirms 1 stundas" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "pirms {hours} stundām" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "šodien" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "vakar" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "pirms {days} dienām" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "pagājušajā mēnesī" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "pirms {months} mēnešiem" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "mēnešus atpakaļ" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "gājušajā gadā" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "gadus atpakaļ" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Labi" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Atcelt" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Izvēlieties" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Jā" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nē" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Nav norādīts objekta tips." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -245,236 +243,236 @@ msgstr "Nav norādīts objekta tips." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Kļūda" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Nav norādīts lietotnes nosaukums." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Pieprasītā datne {file} nav instalēta!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Kopīgs" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Dalīties" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Kļūda, daloties" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Kļūda, beidzot dalīties" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Kļūda, mainot atļaujas" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "{owner} dalījās ar jums un grupu {group}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner} dalījās ar jums" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Dalīties ar" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Dalīties ar saiti" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Aizsargāt ar paroli" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Parole" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Sūtīt saiti personai pa e-pastu" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Sūtīt" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Iestaties termiņa datumu" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Termiņa datums" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Dalīties, izmantojot e-pastu:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Nav atrastu cilvēku" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Atkārtota dalīšanās nav atļauta" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Dalījās ar {item} ar {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Beigt dalīties" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "var rediģēt" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "piekļuves vadība" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "izveidot" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "atjaunināt" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "dzēst" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "dalīties" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Aizsargāts ar paroli" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Kļūda, noņemot termiņa datumu" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Kļūda, iestatot termiņa datumu" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Sūta..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Vēstule nosūtīta" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu ownCloud kopienai." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud paroles maiņa" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Izmantojiet šo saiti, lai mainītu paroli: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Atstatīt e-pasta sūtīšanu." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Pieprasījums neizdevās!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Lietotājvārds" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Pieprasīt paroles maiņu" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Jūsu parole tika nomainīta" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Uz ielogošanās lapu" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Jauna parole" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Mainīt paroli" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personīgi" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Lietotāji" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Lietotnes" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administrators" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Palīdzība" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Pieeja ir liegta" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Mākonis netika atrasts" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Rediģēt kategoriju" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Pievienot" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Brīdinājums par drošību" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -488,120 +486,120 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Nav pieejams drošs nejaušu skaitļu ģenerators. Lūdzu, aktivējiet PHP OpenSSL paplašinājumu." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Bez droša nejaušu skaitļu ģeneratora uzbrucējs var paredzēt paroļu atjaunošanas marķierus un pārņem jūsu kontu." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Visticamāk, jūsu datu direktorija un datnes ir pieejamas no interneta, jo .htaccess datne nedarbojas." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Lai uzzinātu, kā pareizi jākonfigurē šis serveris, skatiet dokumentāciju." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Izveidot administratora kontu" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Paplašināti" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Datu mape" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Konfigurēt datubāzi" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "tiks izmantots" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Datubāzes lietotājs" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Datubāzes parole" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Datubāzes nosaukums" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Datubāzes tabulas telpa" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Datubāzes serveris" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Pabeigt iestatīšanu" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "tīmekļa servisi tavā varā" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Izrakstīties" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automātiskā ierakstīšanās ir noraidīta!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Ja neesat pēdējā laikā mainījis paroli, iespējams, ka jūsu konts ir kompromitēts." +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Lūdzu, nomainiet savu paroli, lai atkal nodrošinātu savu kontu." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Aizmirsāt paroli?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "atcerēties" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Ierakstīties" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternatīvās pieteikšanās" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "iepriekšējā" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "nākamā" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Atjaunina ownCloud uz versiju %s. Tas var aizņemt kādu laiciņu." +msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 61cffe23e2..f4806f1421 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# CPDZ , 2012 -# Imants Liepiņš , 2012 -# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -23,115 +20,115 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Nevarēja pārvietot %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Nevarēja pārsaukt datni" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Augšupielāde pabeigta bez kļūdām" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Augšupielādētā datne pārsniedz MAX_FILE_SIZE norādi, kas ir norādīta HTML formā" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Augšupielādētā datne ir tikai daļēji augšupielādēta" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Neviena datne netika augšupielādēta" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Trūkst pagaidu mapes" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Neizdevās saglabāt diskā" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Nav pietiekami daudz vietas" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Nederīga direktorija." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Datnes" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Dalīties" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Dzēst pavisam" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Dzēst" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Pārsaukt" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Gaida savu kārtu" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} jau eksistē" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "aizvietot" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "ieteiktais nosaukums" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "atcelt" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "aizvietoja {new_name} ar {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "atsaukt" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "veikt dzēšanas darbību" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "Augšupielādē 1 datni" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -139,183 +136,183 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' ir nederīgs datnes nosaukums." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Datnes nosaukums nevar būt tukšs." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhronizēt!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nevar augšupielādēt jūsu datni, jo tā ir direktorija vai arī tās izmērs ir 0 baiti" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Nepietiek brīvas vietas" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Augšupielāde ir atcelta." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL nevar būt tukšs." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Kļūda" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nosaukums" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Izmērs" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Mainīts" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 mape" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} mapes" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 datne" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} datnes" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Augšupielādēt" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Datņu pārvaldība" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksimālais datņu augšupielādes apjoms" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maksimālais iespējamais:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Vajadzīgs vairāku datņu un mapju lejupielādēšanai." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Aktivēt ZIP lejupielādi" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 ir neierobežots" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maksimālais ievades izmērs ZIP datnēm" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Saglabāt" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Jauna" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Teksta datne" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Mape" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "No saites" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Dzēstās datnes" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Atcelt augšupielādi" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Jums nav tiesību šeit rakstīt." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Lejupielādēt" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Pārtraukt dalīšanos" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Datne ir par lielu, lai to augšupielādētu" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Šobrīd tiek caurskatīts" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Uzlabo datņu sistēmas kešatmiņu..." +msgstr "" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index 2b049a1c7e..3125302a6e 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -20,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Šifrēšana" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Datņu šifrēšana ir aktivēta." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Sekojošās datnes netiks šifrētas:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Sekojošos datņu tipus izslēgt no šifrēšanas:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Nav" +msgstr "" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 0155aee427..bd0358cc40 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -20,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Piešķirta pieeja" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Kļūda, konfigurējot Dropbox krātuvi" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Piešķirt pieeju" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Lūdzu, norādiet derīgu Dropbox lietotnes atslēgu un noslēpumu." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Kļūda, konfigurējot Google Drive krātuvi" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Brīdinājums: nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Brīdinājums: uz PHP nav aktivēts vai instalēts FTP atbalsts. Nevar montēt FTP koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." +msgstr "" #: lib/config.php:437 msgid "" @@ -60,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Ārējā krātuve" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Mapes nosaukums" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Ārējā krātuve" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Konfigurācija" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opcijas" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Piemērojams" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Pievienot krātuvi" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Neviens nav iestatīts" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Visi lietotāji" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupas" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Lietotāji" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Dzēst" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Aktivēt lietotāja ārējo krātuvi" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Ļaut lietotājiem montēt pašiem savu ārējo krātuvi" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL saknes sertifikāti" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importēt saknes sertifikātus" +msgstr "" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index eba98a874e..24d9736cd9 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Parole" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Iesniegt" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s ar jums dalījās ar mapi %s" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s ar jums dalījās ar datni %s" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Lejupielādēt" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Nav pieejams priekšskatījums priekš" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "jūsu vadībā esošie tīmekļa servisi" +msgstr "" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 66670fca8c..46d9620d5d 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Nevarēja pilnībā izdzēst %s" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Nevarēja atjaunot %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "veikt atjaunošanu" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Kļūda" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "dzēst datni pavisam" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Dzēst pavisam" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nosaukums" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Dzēsts" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 mape" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} mapes" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 datne" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} datnes" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Šeit nekā nav. Jūsu miskaste ir tukša!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Atjaunot" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Dzēst" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Dzēstās datnes" +msgstr "" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index 9c9098fdd9..bc42f8bfba 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -21,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Nevarēja atgriezt — %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "veiksme" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Datne %s tika atgriezt uz versiju %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "neveiksme" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Datni %s nevarēja atgriezt uz versiju %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Nav pieejamu vecāku versiju" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Nav norādīts ceļš" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versijas" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Atgriez datni uz iepriekšēju versiju, spiežot uz tās atgriešanas pogu" +msgstr "" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 7db941c050..5cb934ee4f 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -20,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Palīdzība" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personīgi" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Iestatījumi" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Lietotāji" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Lietotnes" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administratori" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP lejupielādēšana ir izslēgta." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Datnes var lejupielādēt tikai katru atsevišķi." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Atpakaļ pie datnēm" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "nevarēja noteikt" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Lietotne nav aktivēta" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Autentifikācijas kļūda" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Datnes" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Teksts" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Attēli" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Iestatiet administratora lietotājvārdu." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Iestatiet administratora paroli." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s ievadiet datubāzes lietotājvārdu." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s ievadiet datubāzes nosaukumu." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s datubāžu nosaukumos nedrīkst izmantot punktus" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s iestatiet datubāžu serveri." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Nav derīga PostgreSQL parole un/vai lietotājvārds" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Jums jāievada vai nu esošs vai administratora konts." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Nav derīga Oracle parole un/vai lietotājvārds" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Nav derīga MySQL parole un/vai lietotājvārds" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "DB kļūda — “%s”" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Vainīgā komanda bija “%s”" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL lietotājs %s'@'localhost' jau eksistē." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Izmest šo lietotāju no MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL lietotājs '%s'@'%%' jau eksistē" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Izmest šo lietotāju no MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nav derīga MySQL parole un/vai lietotājvārds — %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sekundes atpakaļ" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "pirms 1 minūtes" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "pirms %d minūtēm" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "pirms 1 stundas" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "pirms %d stundām" +msgstr "" #: template.php:118 msgid "today" -msgstr "šodien" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "vakar" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "pirms %d dienām" +msgstr "" #: template.php:121 msgid "last month" -msgstr "pagājušajā mēnesī" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "pirms %d mēnešiem" +msgstr "" #: template.php:123 msgid "last year" -msgstr "gājušajā gadā" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "gadus atpakaļ" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s ir pieejams. Iegūt vairāk informācijas" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "ir aktuāls" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "atjauninājumu pārbaude ir deaktivēta" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Nevarēja atrast kategoriju “%s”" +msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 3cc0d71ce4..bba00a8000 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# CPDZ , 2012 -# elwins , 2012 -# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -22,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Nevar lejupielādēt sarakstu no lietotņu veikala" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Autentifikācijas kļūda" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -35,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Nevarēja mainīt redzamo vārdu" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Grupa jau eksistē" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Nevar pievienot grupu" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Nevarēja aktivēt lietotni." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-pasts tika saglabāts" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Nederīgs epasts" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Nevar izdzēst grupu" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Nevar izdzēst lietotāju" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Valoda tika nomainīta" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Nederīgs pieprasījums" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administratori nevar izņemt paši sevi no administratoru grupas" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Nevar pievienot lietotāju grupai %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Nevar izņemt lietotāju no grupas %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Nevarēja atjaunināt lietotni." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Atjaunināt uz {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Deaktivēt" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Aktivēt" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Lūdzu, uzgaidiet...." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Kļūda" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Atjaunina...." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Kļūda, atjauninot lietotni" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Atjaunināta" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Saglabā..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "izdzests" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "atsaukt" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Nevar izņemt lietotāju" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupas" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupas administrators" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Dzēst" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "pievienot grupu" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Jānorāda derīgs lietotājvārds" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Kļūda, veidojot lietotāju" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Jānorāda derīga parole" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__valodas_nosaukums__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Brīdinājums par drošību" +msgstr "" #: templates/admin.php:18 msgid "" @@ -183,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Jūsu datu direktorija un datnes visdrīzāk ir pieejamas no interneta. ownCloud nodrošinātā .htaccess datne nedarbojas. Mēs iesakām konfigurēt serveri tā, lai datu direktorija vairs nebūtu pieejama, vai arī pārvietojiet datu direktoriju ārpus tīmekļa servera dokumentu saknes." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Iestatīšanas brīdinājums" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Trūkst modulis “fileinfo”" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Lokāle nestrādā" +msgstr "" #: templates/admin.php:63 #, php-format @@ -220,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Šis ownCloud serveris nevar iestatīt sistēmas lokāli uz %s. Tas nozīmē, ka varētu būt problēmas ar noteiktām rakstzīmēm datņu nosaukumos. Mēs iesakām instalēt vajadzīgās pakotnes savā sistēmā %s atbalstam." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Interneta savienojums nedarbojas" +msgstr "" #: templates/admin.php:78 msgid "" @@ -234,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Šim ownCloud serverim nav strādājoša interneta savienojuma. Tas nozīmē, ka dažas no šīm iespējām, piemēram, ārējas krātuves montēšana, paziņošana par atjauninājumiem vai trešās puses programmatūras instalēšana nestrādā. Varētu nestrādāt attālināta piekļuve pie datnēm un paziņojumu e-pasta vēstuļu sūtīšana. Mēs iesakām aktivēt interneta savienojumu šim serverim, ja vēlaties visas ownCloud iespējas." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Izpildīt vienu uzdevumu ar katru ielādēto lapu" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php ir reģistrēts webcron servisā. Izsauciet cron.php lapu ownCloud saknē caur http reizi sekundē." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Izmantot sistēmas cron servisu. Izsauciet cron.php datni ownCloud mapē caur sistēmas cornjob reizi minūtē." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Dalīšanās" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Aktivēt koplietošanas API" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Ļauj lietotnēm izmantot koplietošanas API" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Atļaut saites" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Ļaut lietotājiem publiski dalīties ar vienumiem, izmantojot saites" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Atļaut atkārtotu koplietošanu" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Ļaut lietotājiem dalīties ar vienumiem atkārtoti" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Ļaut lietotājiem dalīties ar visiem" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Ļaut lietotājiem dalīties ar lietotājiem to grupās" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Drošība" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Uzspiest HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Piespiež klientus savienoties ar ownCloud caur šifrētu savienojumu." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Lūdzu, savienojieties ar šo ownCloud pakalpojumu caur HTTPS, lai aktivētu vai deaktivētu SSL piemērošanu." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Žurnāls" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Žurnāla līmenis" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Vairāk" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Mazāk" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versija" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -339,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "IzstrādājusiownCloud kopiena,pirmkodukurš ir licencēts zem AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Pievieno savu lietotni" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Vairāk lietotņu" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Izvēlies lietotni" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Apskati lietotņu lapu — apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licencēts no " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Atjaunināt" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Lietotāja dokumentācija" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Administratora dokumentācija" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Tiešsaistes dokumentācija" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forums" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Kļūdu sekotājs" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Komerciālais atbalsts" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Jūs lietojat %s no pieejamajiem %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Saņem lietotnes, lai sinhronizētu savas datnes" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Vēlreiz rādīt pirmās palaišanas vedni" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Parole" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Jūru parole tika nomainīta" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Nevar nomainīt jūsu paroli" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Pašreizējā parole" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Jauna parole" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Mainīt paroli" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Redzamais vārds" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-pasts" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Jūsu e-pasta adrese" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Valoda" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Palīdzi tulkot" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Izmanto šo adresi, lai, izmantojot datņu pārvaldnieku, savienotos ar savu ownCloud" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Ierakstīšanās vārds" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Izveidot" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Noklusējuma krātuve" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Neierobežota" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Cits" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Krātuve" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "mainīt redzamo vārdu" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "iestatīt jaunu paroli" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Noklusējuma" +msgstr "" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index d90ac74dcb..7761f4ea5a 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -20,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Neizdevās izdzēst servera konfigurāciju" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Konfigurācija ir derīga un varēja izveidot savienojumu!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Konfigurācija ir derīga, bet sasaiste neizdevās. Lūdzu, pārbaudiet servera iestatījumus un akreditācijas datus." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Konfigurācija ir nederīga. Lūdzu, apskatiet ownCloud žurnālu, lai uzzinātu vairāk." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Neizdevās izdzēst" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Paņemt iestatījumus no nesenas servera konfigurācijas?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Paturēt iestatījumus?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Nevar pievienot servera konfigurāciju" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Savienojuma tests ir veiksmīgs" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Savienojuma tests cieta neveiksmi" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Vai tiešām vēlaties dzēst pašreizējo servera konfigurāciju?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Apstiprināt dzēšanu" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Brīdinājums: lietotnes user_ldap un user_webdavauth ir nesavietojamas. Tās var izraisīt negaidītu uzvedību. Lūdzu, prasiet savam sistēmas administratoram kādu no tām deaktivēt." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Brīdinājums: PHP LDAP modulis nav uzinstalēts, aizmugure nedarbosies. Lūdzu, prasiet savam sistēmas administratoram kādu no tām deaktivēt." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Servera konfigurācija" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Pievienot servera konfigurāciju" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Resursdators" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Var neiekļaut protokolu, izņemot, ja vajag SSL. Tad sākums ir ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Bāzes DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Viena bāzes DN rindā" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Lietotājiem un grupām bāzes DN var norādīt cilnē “Paplašināti”" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Lietotāja DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "Klienta lietotāja DN, ar ko veiks sasaisti, piemēram, uid=agent,dc=example,dc=com. Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Parole" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Lietotāja ierakstīšanās filtrs" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Definē filtru, ko izmantot, kad mēģina ierakstīties. %%uid ierakstīšanās darbībā aizstāj lietotājvārdu." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "lieto %%uid vietturi, piemēram, \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Lietotāju saraksta filtrs" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definē filtru, ko izmantot, kad saņem lietotāju sarakstu." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "bez jebkādiem vietturiem, piemēram, \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Grupu filtrs" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definē filtru, ko izmantot, kad saņem grupu sarakstu." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "bez jebkādiem vietturiem, piemēram, \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Savienojuma iestatījumi" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Konfigurācija ir aktīva" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Ja nav atzīmēts, šī konfigurācija tiks izlaista." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Ports" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Rezerves (kopija) serveris" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Norādi rezerves serveri (nav obligāti). Tam ir jābūt galvenā LDAP/AD servera kopijai." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Rezerves (kopijas) ports" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Deaktivēt galveno serveri" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Kad ieslēgts, ownCloud savienosies tikai ar kopijas serveri." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Lietot TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Neizmanto papildu LDAPS savienojumus! Tas nestrādās." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Reģistrnejutīgs LDAP serveris (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Izslēgt SSL sertifikātu validēšanu." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Ja savienojums darbojas ar šo opciju, importē LDAP serveru SSL sertifikātu savā ownCloud serverī." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Nav ieteicams, izmanto tikai testēšanai!" +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Kešatmiņas dzīvlaiks" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "sekundēs. Izmaiņas iztukšos kešatmiņu." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Direktorijas iestatījumi" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Lietotāja redzamā vārda lauks" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP atribūts, ko izmantot lietotāja ownCloud vārda veidošanai." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Bāzes lietotāju koks" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Viena lietotāju bāzes DN rindā" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Lietotāju meklēšanas atribūts" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Neobligāti; viens atribūts rindā" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Grupas redzamā nosaukuma lauks" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP atribūts, ko izmantot grupas ownCloud nosaukuma veidošanai." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Bāzes grupu koks" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Viena grupu bāzes DN rindā" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Grupu meklēšanas atribūts" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Grupu piederības asociācija" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Īpašie atribūti" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Kvotu lauks" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Kvotas noklusējums" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "baitos" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "E-pasta lauks" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Lietotāja mājas mapes nosaukšanas kārtula" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Atstāt tukšu lietotāja vārdam (noklusējuma). Citādi, norādi LDAP/AD atribūtu." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Testa konfigurācija" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Palīdzība" +msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 340277d940..4006ccf01d 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012 -# Miroslav Jovanovic , 2012 -# Miroslav Jovanovic , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -23,34 +20,34 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Корисникот %s сподели датотека со Вас" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Корисникот %s сподели папка со Вас" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Корисникот %s ја сподели датотека „%s“ со Вас. Достапна е за преземање тука: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Корисникот %s ја сподели папката „%s“ со Вас. Достапна е за преземање тука: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Не беше доставен тип на категорија." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Нема категорија да се додаде?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -61,184 +58,184 @@ msgstr "" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Не беше доставен тип на објект." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID не беше доставено." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Грешка при додавање %s во омилени." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Не е одбрана категорија за бришење." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Грешка при бришење на %s од омилени." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Недела" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Понеделник" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Вторник" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Среда" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Четврток" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Петок" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Сабота" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Јануари" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Февруари" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Март" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Април" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Мај" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Јуни" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Јули" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Август" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Септември" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Октомври" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Ноември" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Декември" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Поставки" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "пред секунди" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "пред 1 минута" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "пред {minutes} минути" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "пред 1 час" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "пред {hours} часови" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "денеска" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "вчера" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "пред {days} денови" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "минатиот месец" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "пред {months} месеци" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "пред месеци" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "минатата година" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "пред години" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Во ред" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Откажи" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Избери" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Да" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Не" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Не е специфициран типот на објект." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -246,15 +243,15 @@ msgstr "Не е специфициран типот на објект." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Името на апликацијата не е специфицирано." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Задолжителната датотека {file} не е инсталирана!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -262,123 +259,123 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Сподели" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Грешка при споделување" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Грешка при прекин на споделување" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Грешка при промена на привилегии" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Споделено со Вас и групата {group} од {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Споделено со Вас од {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Сподели со" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Сподели со врска" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Заштити со лозинка" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Лозинка" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Прати врска по е-пошта на личност" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Прати" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Постави рок на траење" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Рок на траење" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Сподели по е-пошта:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Не се најдени луѓе" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Повторно споделување не е дозволено" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Споделено во {item} со {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Не споделувај" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "може да се измени" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "контрола на пристап" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "креирај" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "ажурирај" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "избриши" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "сподели" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Заштитено со лозинка" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Грешка при тргање на рокот на траење" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Грешка при поставување на рок на траење" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Праќање..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Е-порака пратена" +msgstr "" #: js/update.js:14 msgid "" @@ -393,89 +390,89 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ресетирање на лозинка за ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Порката за ресетирање на лозинка пратена." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Барањето не успеа!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Корисничко име" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Побарајте ресетирање" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Вашата лозинка беше ресетирана" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Кон страницата за најава" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Нова лозинка" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Ресетирај лозинка" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Лично" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Корисници" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Апликации" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Админ" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Помош" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Забранет пристап" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Облакот не е најден" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Уреди категории" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Додади" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Безбедносно предупредување" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -489,13 +486,13 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Не е достапен безбеден генератор на случајни броеви, Ве молам озвоможете го OpenSSL PHP додатокот." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Без сигурен генератор на случајни броеви напаѓач може да ги предвиди жетоните за ресетирање на лозинка и да преземе контрола врз Вашата сметка. " +msgstr "" #: templates/installation.php:39 msgid "" @@ -512,83 +509,83 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Направете администраторска сметка" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Напредно" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Фолдер со податоци" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Конфигурирај ја базата" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "ќе биде користено" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Корисник на база" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Лозинка на база" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Име на база" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Табела во базата на податоци" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Сервер со база" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Заврши го подесувањето" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "веб сервиси под Ваша контрола" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Одјава" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Одбиена автоматска најава!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Ако не сте ја промениле лозинката во скоро време, вашата сметка може да е компромитирана" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Ја заборавивте лозинката?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "запамти" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Најава" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -596,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "претходно" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "следно" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/mk/files.po b/l10n/mk/files.po index ba34429cb4..aad032681b 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012 -# Miroslav Jovanovic , 2012 -# Miroslav Jovanovic , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -36,38 +33,38 @@ msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Ниту еден фајл не се вчита. Непозната грешка" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Нема грешка, датотеката беше подигната успешно" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поставена во HTML формата" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Датотеката беше само делумно подигната." +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Не беше подигната датотека" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Не постои привремена папка" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Неуспеав да запишам на диск" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -79,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Датотеки" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Сподели" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -91,39 +88,39 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Избриши" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Преименувај" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Чека" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} веќе постои" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "замени" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "предложи име" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "откажи" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "заменета {new_name} со {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "врати" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -131,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 датотека се подига" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -149,7 +146,7 @@ msgstr "" msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -167,7 +164,7 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -175,16 +172,16 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Преземањето е прекинато." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Адресата неможе да биде празна." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -192,87 +189,87 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Име" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Големина" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Променето" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 папка" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} папки" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 датотека" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} датотеки" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Подигни" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Ракување со датотеки" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Максимална големина за подигање" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "макс. можно:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Потребно за симнување повеќе-датотеки и папки." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Овозможи ZIP симнување " +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 е неограничено" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Максимална големина за внес на ZIP датотеки" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Сними" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Ново" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Текстуална датотека" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Папка" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Од врска" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -280,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Откажи прикачување" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -288,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Тука нема ништо. Снимете нешто!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Преземи" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Не споделувај" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Датотеката е премногу голема" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Се скенираат датотеки, ве молам почекајте." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Моментално скенирам" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 2d19fc1765..696c207021 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Енкрипција" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ништо" +msgstr "" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 4b902d2cca..4c1e713eed 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -20,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Пристапот е дозволен" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Грешка при конфигурација на Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Дозволи пристап" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Ве молам доставите валиден Dropbox клуч и тајна лозинка." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Грешка при конфигурација на Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира." +msgstr "" #: lib/config.php:437 msgid "" @@ -60,11 +59,11 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Надворешно складиште" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Име на папка" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -72,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Конфигурација" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Опции" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Применливо" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -88,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Ништо поставено" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Сите корисници" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Групи" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Корисници" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Избриши" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Овозможи надворешни за корисници" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Дозволи им на корисниците да монтираат свои надворешни дискови" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL root сертификати" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Увези" +msgstr "" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 8f8d15bd33..22ff159add 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Лозинка" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Прати" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s ја сподели папката %s со Вас" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s ја сподели датотеката %s со Вас" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Преземи" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Нема достапно преглед за" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "веб сервиси под Ваша контрола" +msgstr "" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 5b9f5e38ca..c1cbd89394 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Име" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 папка" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} папки" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 датотека" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} датотеки" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Избриши" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index 0f47e5a9dd..a30a48ee8b 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -51,7 +50,7 @@ msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Версии" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 2dfafad88e..bb6e47e065 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -20,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Помош" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Лично" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Параметри" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Корисници" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Аппликации" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Админ" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Преземање во ZIP е исклучено" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Датотеките треба да се симнат една по една." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Назад кон датотеки" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Избраните датотеки се преголеми за да се генерира zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -64,27 +63,27 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Апликацијата не е овозможена" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Грешка во автентикација" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Жетонот е истечен. Ве молам превчитајте ја страницата." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Датотеки" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Текст" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Слики" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -114,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "пред секунди" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "пред 1 минута" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "пред %d минути" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "пред 1 час" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "пред %d часови" +msgstr "" #: template.php:118 msgid "today" -msgstr "денеска" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "вчера" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "пред %d денови" +msgstr "" #: template.php:121 msgid "last month" -msgstr "минатиот месец" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "пред %d месеци" +msgstr "" #: template.php:123 msgid "last year" -msgstr "минатата година" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "пред години" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s е достапно. Земи повеќе информации" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "ажурно" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "проверката за ажурирања е оневозможена" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Не можам да најдам категорија „%s“" +msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 1db983b0ea..21fa1820cc 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012 -# Miroslav Jovanovic , 2012 -# Miroslav Jovanovic , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -22,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Неможам да вчитам листа од App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Грешка во автентикација" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -39,53 +36,53 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Групата веќе постои" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Неможе да додадам група" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Неможе да овозможам апликација." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Електронската пошта е снимена" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Неисправна електронска пошта" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Неможе да избришам група" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Неможам да избришам корисник" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Јазикот е сменет" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "неправилно барање" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Администраторите неможе да се избришат себеси од админ групата" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Неможе да додадам корисник во група %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Неможе да избришам корисник од група %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -97,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Оневозможи" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Овозможи" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -109,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -125,7 +122,7 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Снимам..." +msgstr "" #: js/users.js:43 msgid "deleted" @@ -133,7 +130,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "врати" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -142,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Групи" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Администратор на група" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Избриши" +msgstr "" #: js/users.js:262 msgid "add group" @@ -170,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Безбедносно предупредување" +msgstr "" #: templates/admin.php:18 msgid "" @@ -183,7 +180,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Вашата папка со податоци и датотеките е најверојатно достапна од интернет. .htaccess датотеката што ја овозможува ownCloud не фунционира. Силно препорачуваме да го исконфигурирате вашиот сервер за вашата папка со податоци не е достапна преку интернетт или преместете ја надвор од коренот на веб серверот." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" @@ -321,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Повеќе" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Помалку" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Верзија" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -339,47 +336,47 @@ msgid "" "licensed under the AGPL." -msgstr "Развој од ownCloud заедницата, изворниот код е лиценциран соAGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Додадете ја Вашата апликација" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Повеќе аппликации" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Избери аппликација" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Види ја страницата со апликации на apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-лиценцирано од " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Ажурирај" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Корисничка документација" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Администраторска документација" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Документација на интернет" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Форум" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" @@ -387,12 +384,12 @@ msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Комерцијална подршка" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Имате искористено %s од достапните %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" @@ -404,27 +401,27 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Лозинка" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Вашата лозинка беше променета." +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Вашата лозинка неможе да се смени" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Моментална лозинка" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Нова лозинка" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Смени лозинка" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -432,31 +429,31 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Е-пошта" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Вашата адреса за е-пошта" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Јазик" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Помогни во преводот" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Користете ја оваа адреса да " +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" @@ -464,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Создај" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -476,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Останато" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index bf3591d3a7..ceb41dd7e9 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -40,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Бришењето е неуспешно" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -93,12 +92,12 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Домаќин" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" @@ -125,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Лозинка" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -331,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Помош" +msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 0676fa3986..7808fe09b0 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmed Noor Kader Mustajir Md Eusoff , 2012 -# Hadri Hilmi , 2011, 2012 -# Hadri Hilmi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -50,7 +47,7 @@ msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Tiada kategori untuk di tambah?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -76,7 +73,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "tiada kategori dipilih untuk penghapusan" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -85,83 +82,83 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Ahad" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Isnin" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Selasa" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Rabu" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Khamis" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Jumaat" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sabtu" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januari" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februari" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Mac" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "April" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mei" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Jun" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Julai" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Ogos" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Disember" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Tetapan" +msgstr "" #: js/js.js:718 msgid "seconds ago" @@ -217,11 +214,11 @@ msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Batal" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" @@ -229,11 +226,11 @@ msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ya" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Tidak" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -246,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Ralat" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -262,7 +259,7 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Kongsi" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" @@ -298,7 +295,7 @@ msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Kata laluan" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -393,15 +390,15 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Set semula kata lalaun ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -414,68 +411,68 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nama pengguna" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Permintaan set semula" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Kata laluan anda telah diset semula" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Ke halaman log masuk" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Kata laluan baru" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Penetapan semula kata laluan" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Peribadi" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Pengguna" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplikasi" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Bantuan" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Larangan akses" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Awan tidak dijumpai" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Edit kategori" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Tambah" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Amaran keselamatan" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -512,37 +509,37 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "buat akaun admin" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Maju" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Fail data" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Konfigurasi pangkalan data" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "akan digunakan" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Nama pengguna pangkalan data" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Kata laluan pangkalan data" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nama pangkalan data" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" @@ -550,19 +547,19 @@ msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Hos pangkalan data" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Setup selesai" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Perkhidmatan web di bawah kawalan anda" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Log keluar" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" @@ -580,15 +577,15 @@ msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Hilang kata laluan?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "ingat" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Log masuk" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -596,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "sebelum" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "seterus" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 9c0916f8fa..485ccbc386 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmed Noor Kader Mustajir Md Eusoff , 2012 -# Hadri Hilmi , 2011, 2012 -# Hadri Hilmi , 2012 -# Zulhilmi Rosnin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -37,11 +33,11 @@ msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Tiada ralat, fail berjaya dimuat naik." +msgstr "" #: ajax/upload.php:27 msgid "" @@ -52,23 +48,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML " +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Sebahagian daripada fail telah dimuat naik. " +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Tiada fail yang dimuat naik" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Folder sementara hilang" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Gagal untuk disimpan" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -80,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "fail" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Kongsi" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -92,7 +88,7 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Padam" +msgstr "" #: js/fileactions.js:194 msgid "Rename" @@ -100,7 +96,7 @@ msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Dalam proses" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" @@ -108,7 +104,7 @@ msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "ganti" +msgstr "" #: js/filelist.js:252 msgid "suggest name" @@ -116,7 +112,7 @@ msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "Batal" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" @@ -168,7 +164,7 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -176,7 +172,7 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Muatnaik dibatalkan." +msgstr "" #: js/files.js:408 msgid "" @@ -193,19 +189,19 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Ralat" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nama " +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Saiz" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Dimodifikasi" +msgstr "" #: js/files.js:893 msgid "1 folder" @@ -225,51 +221,51 @@ msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Muat naik" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Pengendalian fail" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Saiz maksimum muat naik" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maksimum:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Diperlukan untuk muatturun fail pelbagai " +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Aktifkan muatturun ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 adalah tanpa had" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Saiz maksimum input untuk fail ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Simpan" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Baru" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Fail teks" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Folder" +msgstr "" #: templates/index.php:14 msgid "From link" @@ -281,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Batal muat naik" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -289,11 +285,11 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Muat turun" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" @@ -301,21 +297,21 @@ msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Muat naik terlalu besar" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Fail sedang diimbas, harap bersabar." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Imbasan semasa" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 9515dfd0de..15afa59d32 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index c9f937e2ac..07faf94a80 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -95,16 +95,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Kumpulan" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Pengguna" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Padam" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index db23a1af3f..4ba02e568b 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 8c4564ff8d..df6ee3c710 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Ralat" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nama" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Padam" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index 6f1366cd61..22e8fd7432 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index d40a40daf2..71378be9ff 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -19,19 +19,19 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Bantuan" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Peribadi" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Tetapan" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Pengguna" +msgstr "" #: app.php:398 msgid "Apps" @@ -39,7 +39,7 @@ msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." @@ -67,7 +67,7 @@ msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Ralat pengesahan" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,11 +75,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Fail-fail" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Teks" +msgstr "" #: search/provider/file.php:29 msgid "Images" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index d2639ab24a..c6f187f22b 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmed Noor Kader Mustajir Md Eusoff , 2012 -# Hadri Hilmi , 2011, 2012 -# Hadri Hilmi , 2012 -# Zulhilmi Rosnin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -28,7 +24,7 @@ msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Ralat pengesahan" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -52,11 +48,11 @@ msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Emel disimpan" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Emel tidak sah" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -68,11 +64,11 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Bahasa diubah" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Permintaan tidak sah" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -98,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Nyahaktif" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Aktif" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -110,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Ralat" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -126,11 +122,11 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Simpan..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "dihapus" +msgstr "" #: js/users.js:43 msgid "undo" @@ -143,7 +139,7 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Kumpulan" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" @@ -151,7 +147,7 @@ msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Padam" +msgstr "" #: js/users.js:262 msgid "add group" @@ -171,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "_nama_bahasa_" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Amaran keselamatan" +msgstr "" #: templates/admin.php:18 msgid "" @@ -344,7 +340,7 @@ msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Tambah apps anda" +msgstr "" #: templates/apps.php:12 msgid "More Apps" @@ -352,11 +348,11 @@ msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Pilih aplikasi" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Lihat halaman applikasi di apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " @@ -364,7 +360,7 @@ msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Kemaskini" +msgstr "" #: templates/help.php:4 msgid "User Documentation" @@ -405,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Kata laluan " +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -413,19 +409,19 @@ msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Gagal mengubah kata laluan anda " +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Kata laluan semasa" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Kata laluan baru" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Ubah kata laluan" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -433,23 +429,23 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Emel" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Alamat emel anda" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Isi alamat emel anda untuk membolehkan pemulihan kata laluan" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Bahasa" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Bantu terjemah" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -465,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Buat" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -477,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Lain" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index f99ce5db09..f98fc95c74 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Pemadaman gagal" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Bantuan" +msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 86a5d60cc6..f3eac17fde 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pyae Sone , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -48,7 +47,7 @@ msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "ထည့်ရန်ခေါင်းစဉ်မရှိဘူးလား" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -74,7 +73,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "ဖျက်ရန်အတွက်ခေါင်းစဉ်မရွေးထားပါ" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -111,51 +110,51 @@ msgstr "" #: js/config.php:45 msgid "January" -msgstr "ဇန်နဝါရီ" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "ဖေဖော်ဝါရီ" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "မတ်" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "ဧပြီ" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "မေ" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "ဇွန်" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "ဇူလိုင်" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "ဩဂုတ်" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "စက်တင်ဘာ" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "အောက်တိုဘာ" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "နိုဝင်ဘာ" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "ဒီဇင်ဘာ" +msgstr "" #: js/js.js:286 msgid "Settings" @@ -163,11 +162,11 @@ msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "စက္ကန့်အနည်းငယ်က" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "၁ မိနစ်အရင်က" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" @@ -175,7 +174,7 @@ msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "၁ နာရီ အရင်က" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" @@ -183,11 +182,11 @@ msgstr "" #: js/js.js:723 msgid "today" -msgstr "ယနေ့" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "မနေ့က" +msgstr "" #: js/js.js:725 msgid "{days} days ago" @@ -195,7 +194,7 @@ msgstr "" #: js/js.js:726 msgid "last month" -msgstr "ပြီးခဲ့သောလ" +msgstr "" #: js/js.js:727 msgid "{months} months ago" @@ -207,31 +206,31 @@ msgstr "" #: js/js.js:729 msgid "last year" -msgstr "မနှစ်က" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "နှစ် အရင်က" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "အိုကေ" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "ပယ်ဖျက်မည်" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "ရွေးချယ်" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "ဟုတ်" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "မဟုတ်ဘူး" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -294,9 +293,9 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "စကားဝှက်" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -308,15 +307,15 @@ msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" +msgstr "" #: js/share.js:213 msgid "No people found" @@ -324,7 +323,7 @@ msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" @@ -336,7 +335,7 @@ msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "ပြင်ဆင်နိုင်" +msgstr "" #: js/share.js:322 msgid "access control" @@ -344,7 +343,7 @@ msgstr "" #: js/share.js:325 msgid "create" -msgstr "ဖန်တီးမည်" +msgstr "" #: js/share.js:328 msgid "update" @@ -352,15 +351,15 @@ msgstr "" #: js/share.js:331 msgid "delete" -msgstr "ဖျက်မည်" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "ဝေမျှမည်" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" @@ -399,7 +398,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "အီးမေးလ်မှတစ်ဆင့် သင်၏စကားဝှက်ကို ပြန်ဖော်ရန်အတွက် Link တစ်ခုလက်ခံရရှိပါလိမ့်မယ်။" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -410,9 +409,9 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" -msgstr "သုံးစွဲသူအမည်" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" @@ -420,15 +419,15 @@ msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "သင်၏စကားဝှက်ကိုပြန်ဖော်ပြီးပါပြီ။" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "ဝင်ရောက်သည့်စာမျက်နှာသို့" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "စကားဝှက်အသစ်" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" @@ -440,19 +439,19 @@ msgstr "" #: strings.php:6 msgid "Users" -msgstr "သုံးစွဲသူ" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Apps" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "အက်ဒမင်" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "အကူအညီ" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" @@ -460,7 +459,7 @@ msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "မတွေ့ရှိမိပါ" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -468,12 +467,12 @@ msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "ပေါင်းထည့်" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "လုံခြုံရေးသတိပေးချက်" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -510,95 +509,95 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "အက်ဒမင်အကောင့်တစ်ခုဖန်တီးမည်" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "အဆင့်မြင့်" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "အချက်အလက်ဖိုလ်ဒါလ်" +msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" -msgstr "Database သုံးစွဲသူ" +msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" -msgstr "Database စကားဝှက်" +msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" -msgstr "Database အမည်" +msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" -msgstr "တပ်ဆင်ခြင်းပြီးပါပြီ။" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" -msgstr "သင်၏စကားဝှက်ပျောက်သွားပြီလား။" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" #: templates/login.php:41 -msgid "remember" -msgstr "မှတ်မိစေသည်" - -#: templates/login.php:43 msgid "Log in" -msgstr "ဝင်ရောက်ရန်" +msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "ယခင်" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "နောက်သို့" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 96285df2a3..5d42b32d89 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -76,7 +76,7 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "ဖိုင်များ" +msgstr "" #: js/fileactions.js:116 msgid "Share" @@ -289,7 +289,7 @@ msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "ဒေါင်းလုတ်" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 8187a95657..0980592321 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 8fa33bf789..7ff1f84203 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -99,7 +99,7 @@ msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "သုံးစွဲသူ" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 548c22898b..b43d734150 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -19,11 +19,11 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "စကားဝှက်" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "ထည့်သွင်းမည်" +msgstr "" #: templates/public.php:10 #, php-format @@ -37,7 +37,7 @@ msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "ဒေါင်းလုတ်" +msgstr "" #: templates/public.php:40 msgid "No preview available for" @@ -45,4 +45,4 @@ msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" +msgstr "" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index dbf8725846..9107081978 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_versions.po b/l10n/my_MM/files_versions.po index a2ba5e272d..57a0f93840 100644 --- a/l10n/my_MM/files_versions.po +++ b/l10n/my_MM/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 01231da96e..c89bfedffc 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pyae Sone , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "အကူအညီ" +msgstr "" #: app.php:362 msgid "Personal" @@ -32,35 +31,35 @@ msgstr "" #: app.php:385 msgid "Users" -msgstr "သုံးစွဲသူ" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Apps" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "အက်ဒမင်" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "ဖိုင်သို့ပြန်သွားမည်" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "zip ဖိုင်အဖြစ်ပြုလုပ်ရန် ရွေးချယ်ထားသောဖိုင်များသည် အရမ်းကြီးလွန်းသည်" +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "မဆုံးဖြတ်နိုင်ပါ။" +msgstr "" #: json.php:28 msgid "Application is not enabled" @@ -68,7 +67,7 @@ msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "ခွင့်ပြုချက်မအောင်မြင်" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." @@ -76,15 +75,15 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "ဖိုင်များ" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "စာသား" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "ပုံရိပ်များ" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -114,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "စက္ကန့်အနည်းငယ်က" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "၁ မိနစ်အရင်က" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d မိနစ်အရင်က" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "၁ နာရီ အရင်က" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d နာရီအရင်က" +msgstr "" #: template.php:118 msgid "today" -msgstr "ယနေ့" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "မနေ့က" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d ရက် အရင်က" +msgstr "" #: template.php:121 msgid "last month" -msgstr "ပြီးခဲ့သောလ" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d လအရင်က" +msgstr "" #: template.php:123 msgid "last year" -msgstr "မနှစ်က" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "နှစ် အရင်က" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s ကိုရရှိနိုင်ပါပြီ။ နောက်ထပ်အချက်အလက်များရယူပါ။" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "နောက်ဆုံးပေါ်" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "နောက်ဆုံးပေါ်စစ်ဆေးခြင်းကိုပိတ်ထားသည်" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" +msgstr "" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index e426cb97d8..1aae8991d7 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "ခွင့်ပြုချက်မအောင်မြင်" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -68,7 +68,7 @@ msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "တောင်းဆိုချက်မမှန်ကန်ပါ" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -171,7 +171,7 @@ msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "လုံခြုံရေးသတိပေးချက်" +msgstr "" #: templates/admin.php:18 msgid "" @@ -401,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "စကားဝှက်" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -417,7 +417,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "စကားဝှက်အသစ်" +msgstr "" #: templates/personal.php:44 msgid "Change password" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 11909d9de1..ee5908d015 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "စကားဝှက်" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "အကူအညီ" +msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index a401ca1cc7..0ca2dff0e9 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# anjar , 2011, 2012 -# Christer Eriksson , 2012 -# Daniel , 2012 -# espenbye , 2012 -# hdalgrav , 2012 -# owncloud , 2012 -# runesudden , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -54,7 +47,7 @@ msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Ingen kategorier å legge til?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -80,7 +73,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Ingen kategorier merket for sletting." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -89,155 +82,155 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Søndag" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Mandag" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Tirsdag" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Onsdag" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Torsdag" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Fredag" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Lørdag" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februar" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Mars" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "April" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mai" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Juni" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Juli" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "August" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Desember" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Innstillinger" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sekunder siden" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minutt siden" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minutter siden" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 time siden" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} timer siden" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "i dag" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "i går" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} dager siden" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "forrige måned" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} måneder siden" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "måneder siden" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "forrige år" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "år siden" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Avbryt" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Velg" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ja" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nei" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -250,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Feil" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -266,11 +259,11 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Del" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Feil under deling" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" @@ -290,19 +283,19 @@ msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Del med" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Del med link" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Passordbeskyttet" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Passord" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -310,23 +303,23 @@ msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Send" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Set utløpsdato" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Utløpsdato" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Del på epost" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Ingen personer funnet" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" @@ -338,35 +331,35 @@ msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Avslutt deling" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "kan endre" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "tilgangskontroll" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "opprett" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "oppdater" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "slett" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "del" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Passordbeskyttet" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" @@ -374,15 +367,15 @@ msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Kan ikke sette utløpsdato" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Sender..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "E-post sendt" +msgstr "" #: js/update.js:14 msgid "" @@ -397,15 +390,15 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Tilbakestill ownCloud passord" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Bruk følgende lenke for å tilbakestille passordet ditt: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Du burde motta detaljer om å tilbakestille passordet ditt via epost." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -418,68 +411,68 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Brukernavn" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Anmod tilbakestilling" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Passordet ditt ble tilbakestilt" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Til innlogginssiden" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nytt passord" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Tilbakestill passord" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personlig" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Brukere" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Apper" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Hjelp" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Tilgang nektet" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Sky ikke funnet" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Rediger kategorier" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Legg til" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Sikkerhetsadvarsel" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -516,83 +509,83 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "opprett en administrator-konto" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avansert" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Datamappe" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Konfigurer databasen" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "vil bli brukt" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Databasebruker" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Databasepassord" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Databasenavn" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Database tabellområde" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Databasevert" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Fullfør oppsetting" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "nettjenester under din kontroll" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Logg ut" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatisk pålogging avvist!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Hvis du ikke har endret passordet ditt nylig kan kontoen din være kompromitert" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Vennligst skift passord for å gjøre kontoen din sikker igjen." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Mistet passordet ditt?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "husk" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Logg inn" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -600,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "forrige" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "neste" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index c0bc24ae37..390088b6c8 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -3,21 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# anjar , 2011, 2012 -# Arvid Nornes , 2012 -# Christer Eriksson , 2012 -# Daniel , 2012 -# espenbye , 2012 -# hdalgrav , 2012 -# olamaekle , 2012 -# runesudden , 2012 -# sindrejh , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -42,11 +33,11 @@ msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Ingen filer ble lastet opp. Ukjent feil." +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Det er ingen feil. Filen ble lastet opp." +msgstr "" #: ajax/upload.php:27 msgid "" @@ -57,23 +48,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Filopplastningen ble bare delvis gjennomført" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Ingen fil ble lastet opp" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Mangler en midlertidig mappe" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Klarte ikke å skrive til disk" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -85,51 +76,51 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Filer" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Del" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Slett permanent" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Slett" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Omdøp" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Ventende" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} finnes allerede" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "erstatt" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "foreslå navn" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "avbryt" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "erstatt {new_name} med {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "angre" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -137,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 fil lastes opp" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -155,7 +146,7 @@ msgstr "" msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -173,7 +164,7 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -181,16 +172,16 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Opplasting avbrutt." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL-en kan ikke være tom." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -198,87 +189,87 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Feil" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Navn" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Størrelse" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Endret" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 mappe" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} mapper" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 fil" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} filer" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Last opp" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Filhåndtering" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksimum opplastingsstørrelse" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max. mulige:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Nødvendig for å laste ned mapper og mer enn én fil om gangen." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Aktiver nedlasting av ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 er ubegrenset" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maksimal størrelse på ZIP-filer" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Lagre" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Ny" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Tekstfil" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Mappe" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Fra link" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -286,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Avbryt opplasting" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -294,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Ingenting her. Last opp noe!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Last ned" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Avslutt deling" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Opplasting for stor" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Filene du prøver å laste opp er for store for å laste opp til denne serveren." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Skanner etter filer, vennligst vent." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Pågående skanning" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index a4f3b39ecb..1cc4ac5d01 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Arvid Nornes , 2012. -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Kryptering" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Fil-kryptering er aktivert." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Følgende filtyper vil ikke bli kryptert:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Ekskluder følgende filtyper fra kryptering:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ingen" +msgstr "" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index f0410099e0..089857108a 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# anjar , 2012 -# troll , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -21,15 +19,15 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Tilgang innvilget" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Feil ved konfigurering av Dropbox-lagring" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Gi tilgang" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." @@ -61,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Ekstern lagring" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Mappenavn" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Ekstern lagringsplass" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Konfigurasjon" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Innstillinger" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Anvendelig" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Legg til lagringsplass" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Ingen valgt" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Alle brukere" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupper" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Brukere" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Slett" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Aktiver ekstern lagring for bruker" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Tillat brukere å koble til egne eksterne lagringsmedium" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL root-sertifikater" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importer root-sertifikat" +msgstr "" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index aab4069ed7..1d407cb36b 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Arvid Nornes , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Passord" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Send inn" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s delte mappen %s med deg" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s delte filen %s med deg" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Last ned" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Forhåndsvisning ikke tilgjengelig for" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "web tjenester du kontrollerer" +msgstr "" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index dde092aba9..03a1c7cf49 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivar Bredesen , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -21,64 +20,64 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Kunne ikke slette %s fullstendig" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Kunne ikke gjenopprette %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "utfør gjenopprettings operasjon" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Feil" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "slett filer permanent" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Slett permanent" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Navn" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Slettet" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 mappe" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} mapper" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 fil" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} filer" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Ingenting her. Søppelkassen din er tom!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Gjenopprett" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Slett" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index 5f9387a60f..d015d06ee6 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Arvid Nornes , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 5228fc0a44..909a7c32e7 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Arvid Nornes , 2012 -# espenbye , 2012 -# hdalgrav , 2012 -# runesudden , 2012 -# sindrejh , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -24,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Hjelp" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personlig" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Innstillinger" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Brukere" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Apper" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP-nedlasting av avslått" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Filene må lastes ned en om gangen" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Tilbake til filer" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "De valgte filene er for store til å kunne generere ZIP-fil" +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -68,27 +63,27 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Applikasjon er ikke påslått" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Autentiseringsfeil" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Symbol utløpt. Vennligst last inn siden på nytt." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Filer" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Tekst" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Bilder" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -118,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sekunder siden" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minutt siden" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minutter siden" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 time siden" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d timer siden" +msgstr "" #: template.php:118 msgid "today" -msgstr "i dag" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "i går" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d dager siden" +msgstr "" #: template.php:121 msgid "last month" -msgstr "forrige måned" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d måneder siden" +msgstr "" #: template.php:123 msgid "last year" -msgstr "i fjor" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "år siden" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s er tilgjengelig. Få mer informasjon" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "oppdatert" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "versjonssjekk er avslått" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Kunne ikke finne kategori \"%s\"" +msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 59baf0b354..ec69a4b976 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -3,20 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# anjar , 2011 -# Arvid Nornes , 2012 -# Christer Eriksson , 2012 -# Daniel , 2012 -# espenbye , 2012 -# hdalgrav , 2012 -# owncloud , 2012 -# runesudden , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -27,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Lasting av liste fra App Store feilet." +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Autentikasjonsfeil" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -44,39 +36,39 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Gruppen finnes allerede" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Kan ikke legge til gruppe" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Kan ikke aktivere app." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Epost lagret" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Ugyldig epost" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Kan ikke slette gruppe" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Kan ikke slette bruker" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Språk endret" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Ugyldig forespørsel" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -85,12 +77,12 @@ msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Kan ikke legge bruker til gruppen %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Kan ikke slette bruker fra gruppen %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -102,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Slå avBehandle " +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Slå på" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -114,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Feil" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -130,15 +122,15 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Lagrer..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "slettet" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "angre" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -147,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupper" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Gruppeadministrator" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Slett" +msgstr "" #: js/users.js:262 msgid "add group" @@ -175,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Sikkerhetsadvarsel" +msgstr "" #: templates/admin.php:18 msgid "" @@ -326,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Mer" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Mindre" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versjon" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -348,19 +340,19 @@ msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Legg til din App" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Flere Apps" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Velg en app" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Se applikasjonens side på apps.owncloud.org" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " @@ -368,15 +360,15 @@ msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Oppdater" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Brukerdokumentasjon" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Administratordokumentasjon" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" @@ -392,16 +384,16 @@ msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Kommersiell støtte" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Du har brukt %s av tilgjengelig %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Få dine apps til å synkronisere dine filer" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" @@ -409,27 +401,27 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Passord" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Passord har blitt endret" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Kunne ikke endre passordet ditt" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Nåværende passord" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nytt passord" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Endre passord" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -437,27 +429,27 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-post" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Din e-postadresse" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Oppi epostadressen du vil tilbakestille passordet for" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Språk" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Bidra til oversettelsen" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" @@ -469,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Opprett" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -481,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Annet" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 3102274ae5..a4139dfd58 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Ivar Bredesen , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -21,156 +19,156 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Klarte ikke å slette tjener-konfigurasjonen." +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Konfigurasjonen er i orden og tilkoblingen skal være etablert!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Konfigurasjonen er i orden, men Bind mislyktes. Vennligst sjekk tjener-konfigurasjonen og påloggingsinformasjonen." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Konfigurasjonen er ikke i orden. Vennligst se ownClouds logfil for flere detaljer." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Sletting mislyktes" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Hent innstillinger fra tidligere tjener-konfigurasjon?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Behold innstillinger?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Kan ikke legge til tjener-konfigurasjon" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Tilkoblingstest lyktes" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Tilkoblingstest mislyktes" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Er du sikker på at du vil slette aktiv tjener-konfigurasjon?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Bekreft sletting" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Advarsel:Apps user_ldap og user_webdavauth er ikke kompatible. Du kan oppleve uventet atferd fra systemet. Vennligst spør din system-administrator om å deaktivere en av dem." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Warning: PHP LDAP modulen er ikke installert, hjelperen vil ikke virke. Vennligst be din system-administrator om å installere den." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Tjener-konfigurasjon" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Legg til tjener-konfigurasjon" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Tjener" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Du kan utelate protokollen, men du er påkrevd å bruke SSL. Deretter starte med ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Base DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "En hoved DN pr. linje" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Du kan spesifisere Base DN for brukere og grupper under Avansert fanen" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Bruker DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN nummeret til klienten som skal bindes til, f.eks. uid=agent,dc=example,dc=com. For anonym tilgang, la DN- og passord-feltet stå tomt." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Passord" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "For anonym tilgang, la DN- og passord-feltet stå tomt." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Brukerpålogging filter" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Definerer filteret som skal brukes når et påloggingsforsøk blir utført. %%uid erstatter brukernavnet i innloggingshandlingen." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "bruk %%uid plassholder, f.eks. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Brukerliste filter" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definerer filteret som skal brukes, når systemet innhenter brukere." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "uten noe plassholder, f.eks. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Gruppefilter" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definerer filteret som skal brukes, når systemet innhenter grupper." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "uten noe plassholder, f.eks. \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" @@ -178,19 +176,19 @@ msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Konfigurasjon aktiv" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Når ikke huket av så vil denne konfigurasjonen bli hoppet over." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Sikkerhetskopierings (Replica) vert" +msgstr "" #: templates/settings.php:72 msgid "" @@ -212,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Bruk TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -220,21 +218,21 @@ msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Case-insensitiv LDAP tjener (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Slå av SSL-sertifikat validering" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Hvis tilgang kun fungerer med dette alternativet, importer LDAP-tjenerens SSL-sertifikat til din egen ownCloud tjener." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Ikke anbefalt, bruk kun for testing" +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -242,7 +240,7 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "i sekunder. En endring tømmer bufferen." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" @@ -250,19 +248,19 @@ msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Vis brukerens navnfelt" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP-attributen å bruke for å generere brukers ownCloud navn." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Hovedbruker tre" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "En Bruker Base DN pr. linje" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" @@ -274,19 +272,19 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Vis gruppens navnfelt" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP-attributen å bruke for å generere gruppens ownCloud navn." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Hovedgruppe tre" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "En gruppe hoved-DN pr. linje" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" @@ -294,7 +292,7 @@ msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "gruppe-medlem assosiasjon" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -310,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "i bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -324,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "La stå tom for brukernavn (standard). Ellers, spesifiser en LDAP/AD attributt." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -332,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Hjelp" +msgstr "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index fb5ac097bd..084a1d7092 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -293,7 +293,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "" @@ -409,7 +409,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "" @@ -519,37 +519,37 @@ msgstr "" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" @@ -561,33 +561,33 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index f3a5af8475..1bd24b1346 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index adf3985dab..4eb8d284c4 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index 8563ff898e..5b2e2ed597 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index e18a1db2d7..6905b432c8 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index 16034c1cb4..3775730782 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/files_versions.po b/l10n/ne/files_versions.po index 234a1c0d8f..3f57c723bc 100644 --- a/l10n/ne/files_versions.po +++ b/l10n/ne/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 44cf09325b..cfe8c77fed 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index b7e35b2269..20957a953f 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index a589c8483d..871723423d 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 0532294600..b256d37aaa 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -3,26 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012-2013 -# isama , 2011 -# diederikdehaas , 2012 -# Erik Bent , 2012 -# Robin Appelman , 2011 -# jgelauff , 2012 -# koenvervloesem , 2011 -# Len , 2012 -# Martin Wildeman , 2012 -# Pietje8501 , 2012 -# Richard Bos , 2012 -# bartv , 2012 -# translatemonkey , 2012 -# webbmark , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -34,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Gebruiker %s deelde een bestand met u" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Gebruiker %s deelde een map met u" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Gebruiker %s deelde bestand \"%s\" met u. Het is hier te downloaden: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Categorie type niet opgegeven." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Geen categorie toevoegen?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Deze categorie bestaat al: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Object type niet opgegeven." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID niet opgegeven." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Toevoegen van %s aan favorieten is mislukt." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Geen categorie geselecteerd voor verwijdering." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Verwijderen %s van favorieten is mislukt." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Zondag" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Maandag" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Dinsdag" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Woensdag" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Donderdag" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Vrijdag" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Zaterdag" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "januari" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "februari" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "maart" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "april" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "mei" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "juni" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "juli" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "augustus" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "september" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "november" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "december" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Instellingen" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "seconden geleden" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minuut geleden" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minuten geleden" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 uur geleden" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} uren geleden" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "vandaag" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "gisteren" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} dagen geleden" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "vorige maand" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} maanden geleden" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "maanden geleden" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "vorig jaar" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "jaar geleden" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Annuleren" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Kies" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ja" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nee" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Het object type is niet gespecificeerd." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -257,363 +243,363 @@ msgstr "Het object type is niet gespecificeerd." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Fout" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "De app naam is niet gespecificeerd." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Het vereiste bestand {file} is niet geïnstalleerd!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Gedeeld" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Delen" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Fout tijdens het delen" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Fout tijdens het stoppen met delen" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Fout tijdens het veranderen van permissies" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Gedeeld met u en de groep {group} door {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Gedeeld met u door {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Deel met" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Deel met link" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Wachtwoord beveiliging" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Wachtwoord" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "E-mail link naar persoon" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Versturen" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Stel vervaldatum in" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Vervaldatum" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Deel via email:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Geen mensen gevonden" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Verder delen is niet toegestaan" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Gedeeld in {item} met {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Stop met delen" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "kan wijzigen" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "toegangscontrole" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "maak" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "bijwerken" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "verwijderen" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "deel" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Wachtwoord beveiligd" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Fout tijdens het verwijderen van de verval datum" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Fout tijdens het instellen van de vervaldatum" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Versturen ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "E-mail verzonden" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "De update is niet geslaagd. Meld dit probleem aan bij de ownCloud community." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "De update is geslaagd. U wordt teruggeleid naar uw eigen ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud wachtwoord herstellen" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Gebruik de volgende link om je wachtwoord te resetten: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "U ontvangt een link om uw wachtwoord opnieuw in te stellen via e-mail." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Reset e-mail verstuurd." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Verzoek mislukt!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Gebruikersnaam" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Resetaanvraag" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Je wachtwoord is gewijzigd" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Naar de login-pagina" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nieuw wachtwoord" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Reset wachtwoord" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Persoonlijk" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Gebruikers" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Apps" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Beheerder" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Help" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Toegang verboden" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud niet gevonden" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Wijzigen categorieën" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Toevoegen" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Beveiligingswaarschuwing" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Uw PHP versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Werk uw PHP installatie bij om ownCloud veilig te kunnen gebruiken." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL extentie aan." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Zonder random nummer generator is het mogelijk voor een aanvaller om de reset tokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Uw gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess bestand niet werkt." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Informatie over het configureren van uw server is hier te vinden documentatie." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Maak een beheerdersaccount aan" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Geavanceerd" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Gegevensmap" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configureer de database" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "zal gebruikt worden" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Gebruiker database" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Wachtwoord database" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Naam database" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Database tablespace" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Database server" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Installatie afronden" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Webdiensten in eigen beheer" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Afmelden" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatische aanmelding geweigerd!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Als u uw wachtwoord niet onlangs heeft aangepast, kan uw account overgenomen zijn!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Wijzig uw wachtwoord zodat uw account weer beveiligd is." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Uw wachtwoord vergeten?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "onthoud gegevens" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Meld je aan" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternatieve inlogs" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "vorige" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "volgende" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Updaten ownCloud naar versie %s, dit kan even duren." +msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index b27444cc10..ca5abf9a58 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -3,24 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012-2013 -# isama , 2011 -# bartv , 2011 -# diederikdehaas , 2012 -# Erik Bent , 2012 -# Robin Appelman , 2011 -# jgelauff , 2012 -# koenvervloesem , 2011 -# Len , 2012 -# Pietje8501 , 2012 -# Richard Bos , 2012 -# Wilfred Dijksman , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -32,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Kon %s niet verplaatsen" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Kan bestand niet hernoemen" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Er was geen bestand geladen. Onbekende fout" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Geen fout opgetreden, bestand successvol geupload." +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Het bestand is slechts gedeeltelijk geupload" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Geen bestand geüpload" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Een tijdelijke map mist" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Schrijven naar schijf mislukt" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Niet genoeg opslagruimte beschikbaar" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Ongeldige directory." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Bestanden" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Delen" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Verwijder definitief" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Verwijder" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Hernoem" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Wachten" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} bestaat al" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "vervang" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "Stel een naam voor" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "annuleren" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "verving {new_name} met {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "ongedaan maken" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "uitvoeren verwijderactie" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 bestand wordt ge-upload" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "bestanden aan het uploaden" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' is een ongeldige bestandsnaam." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Bestandsnaam kan niet leeg zijn." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of gesynchroniseerd!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Niet genoeg ruimte beschikbaar" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Uploaden geannuleerd." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL kan niet leeg zijn." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Fout" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Naam" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Bestandsgrootte" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Laatst aangepast" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 map" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} mappen" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 bestand" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} bestanden" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Upload" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Bestand" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximale bestandsgrootte voor uploads" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max. mogelijk: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Nodig voor meerdere bestanden en mappen downloads." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Zet ZIP-download aan" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 is ongelimiteerd" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maximale grootte voor ZIP bestanden" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Opslaan" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nieuw" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Tekstbestand" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Map" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Vanaf link" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Verwijderde bestanden" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Upload afbreken" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "U hebt hier geen schrijfpermissies." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Er bevindt zich hier niets. Upload een bestand!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Download" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Stop delen" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Bestanden te groot" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Bestanden worden gescand, even wachten." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Er wordt gescand" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Upgraden bestandssysteem cache..." +msgstr "" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index 76bec86568..08f0a9e897 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2013. -# Lennart Weijl , 2013. -# Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -22,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Versleuteling" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Bestandsversleuteling geactiveerd." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "De volgende bestandstypen zullen niet worden versleuteld:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Sluit de volgende bestandstypen uit van versleuteling:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Geen" +msgstr "" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 8497881e28..144f5d35a1 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012-2013 -# Richard Bos , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -21,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Toegang toegestaan" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Fout tijdens het configureren van Dropbox opslag" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Sta toegang toe" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Geef een geldige Dropbox key en secret." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Fout tijdens het configureren van Google Drive opslag" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Waarschuwing: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van FTP shares is niet mogelijk. Vraag uw beheerder FTP ondersteuning te installeren." +msgstr "" #: lib/config.php:437 msgid "" @@ -61,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Externe opslag" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Mapnaam" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Externe opslag" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Configuratie" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opties" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Van toepassing" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Toevoegen opslag" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Niets ingesteld" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Alle gebruikers" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Groepen" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Gebruikers" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Verwijder" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Externe opslag voor gebruikers activeren" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Sta gebruikers toe om hun eigen externe opslag aan te koppelen" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL root certificaten" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importeer root certificaat" +msgstr "" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index e64ffbe44b..15d7f59c52 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Wachtwoord" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Verzenden" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s deelt de map %s met u" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s deelt het bestand %s met u" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Downloaden" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Geen voorbeeldweergave beschikbaar voor" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "Webdiensten in eigen beheer" +msgstr "" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index c80e748b44..70a08e1885 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Kon %s niet permanent verwijderen" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Kon %s niet herstellen" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "uitvoeren restore operatie" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Fout" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "verwijder bestanden definitief" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Verwijder definitief" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Naam" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Verwijderd" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 map" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} mappen" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 bestand" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} bestanden" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Niets te vinden. Uw prullenbak is leeg!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Herstellen" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Verwijder" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Verwijderde bestanden" +msgstr "" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 9254c97a29..3e65f412fe 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2013. -# Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Kon niet terugdraaien: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "succes" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Bestand %s is teruggedraaid naar versie %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "mislukking" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Bestand %s kon niet worden teruggedraaid naar versie %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Geen oudere versies beschikbaar" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Geen pad opgegeven" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versies" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Draai een bestand terug naar een voorgaande versie door te klikken op de terugdraai knop" +msgstr "" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 36dc7d9638..f325b0c6fd 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2013 -# Len , 2012 -# Richard Bos , 2012 -# bartv , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -23,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Help" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Persoonlijk" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Instellingen" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Gebruikers" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Apps" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Beheerder" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP download is uitgeschakeld." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Bestanden moeten één voor één worden gedownload." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Terug naar bestanden" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "kon niet worden vastgesteld" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "De applicatie is niet actief" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Authenticatie fout" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token verlopen. Herlaad de pagina." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Bestanden" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Tekst" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Afbeeldingen" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Stel de gebruikersnaam van de beheerder in." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Stel een beheerderswachtwoord in." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s opgeven database gebruikersnaam." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s opgeven databasenaam." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s er mogen geen puntjes in de databasenaam voorkomen" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s instellen databaseservernaam." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL gebruikersnaam en/of wachtwoord ongeldig" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Geef of een bestaand account op of het beheerdersaccount." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle gebruikersnaam en/of wachtwoord ongeldig" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL gebruikersnaam en/of wachtwoord ongeldig" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "DB Fout: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Onjuiste commande was: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL gebruiker '%s'@'localhost' bestaat al." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Verwijder deze gebruiker uit MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL gebruiker '%s'@'%%' bestaat al" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Verwijder deze gebruiker uit MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL gebruikersnaam en/of wachtwoord niet geldig: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Controleer de installatiehandleiding goed." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "seconden geleden" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minuut geleden" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minuten geleden" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 uur geleden" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d uren geleden" +msgstr "" #: template.php:118 msgid "today" -msgstr "vandaag" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "gisteren" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d dagen geleden" +msgstr "" #: template.php:121 msgid "last month" -msgstr "vorige maand" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d maanden geleden" +msgstr "" #: template.php:123 msgid "last year" -msgstr "vorig jaar" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "jaar geleden" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s is beschikbaar. Verkrijg meer informatie" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "bijgewerkt" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "Meest recente versie controle is uitgeschakeld" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Kon categorie \"%s\" niet vinden" +msgstr "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 3c8bb3340a..f78dae6ea8 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -3,24 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012-2013 -# isama , 2011 -# Bramdv , 2012 -# diederikdehaas , 2012 -# Erik Bent , 2012 -# Robin Appelman , 2011, 2012 -# jgelauff , 2012 -# koenvervloesem , 2011 -# Len , 2012 -# Pietje8501 , 2012 -# Richard Bos , 2012 -# Wilfred Dijksman , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -31,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Kan de lijst niet van de App store laden" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Authenticatie fout" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -44,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Kon de weergavenaam niet wijzigen" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Groep bestaat al" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Niet in staat om groep toe te voegen" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Kan de app. niet activeren" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-mail bewaard" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Ongeldige e-mail" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Niet in staat om groep te verwijderen" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Niet in staat om gebruiker te verwijderen" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Taal aangepast" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Ongeldig verzoek" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Admins kunnen zichzelf niet uit de admin groep verwijderen" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Niet in staat om gebruiker toe te voegen aan groep %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Niet in staat om gebruiker te verwijderen uit groep %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Kon de app niet bijwerken." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Bijwerken naar {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Uitschakelen" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Inschakelen" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Even geduld aub...." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Fout" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Bijwerken...." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Fout bij bijwerken app" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Bijgewerkt" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Aan het bewaren....." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "verwijderd" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "ongedaan maken" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Kon gebruiker niet verwijderen" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Groepen" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Groep beheerder" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "verwijderen" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "toevoegen groep" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Er moet een geldige gebruikersnaam worden opgegeven" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Fout bij aanmaken gebruiker" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Er moet een geldig wachtwoord worden opgegeven" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Nederlands" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Beveiligingswaarschuwing" +msgstr "" #: templates/admin.php:18 msgid "" @@ -192,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htaccess bestand dat ownCloud levert werkt niet goed. U wordt aangeraden om de configuratie van uw webserver zodanig aan te passen dat de data folders niet meer publiekelijk toegankelijk zijn. U kunt ook de data folder verplaatsen naar een folder buiten de webserver document folder." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Instellingswaarschuwing" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Conntroleer de installatie handleiding goed." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Module 'fileinfo' ontbreekt" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Taalbestand werkt niet" +msgstr "" #: templates/admin.php:63 #, php-format @@ -229,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Deze ownCloud server kan de systeemtaal niet instellen op %s. Hierdoor kunnen er mogelijk problemen optreden met bepaalde tekens in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren zodat %s ondersteund wordt." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Internet verbinding werkt niet" +msgstr "" #: templates/admin.php:78 msgid "" @@ -243,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Deze ownCloud server heeft geen actieve internet verbinding. dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internet verbinding voor deze server in te schakelen als u alle functies van ownCloud wilt gebruiken." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Bij laden van elke pagina één taak uitvoeren" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php is geregistreerd bij een webcron service. Roep eens per minuut de cron.php pagina aan over http in de ownCloud root." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Gebruik de systems cron service. Roep eens per minuut de cron.php file in de ownCloud map via een systeem cronjob." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Delen" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Activeren Share API" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Apps toestaan de Share API te gebruiken" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Toestaan links" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Toestaan dat gebruikers objecten met links delen met anderen" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Toestaan opnieuw delen" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Toestaan dat gebruikers met iedereen delen" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Beveiliging" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Afdwingen HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Afdwingen dat de clients alleen via versleutelde verbinding contact maken met ownCloud." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Maak via HTTPS verbinding met deze ownCloud inrichting om het afdwingen van gebruik van SSL te activeren of deactiveren." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Log" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Log niveau" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Meer" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Minder" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versie" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -348,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "App toevoegen" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Meer apps" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Selecteer een app" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Zie de applicatiepagina op apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-Gelicenseerd door " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Bijwerken" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Gebruikersdocumentatie" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Beheerdersdocumentatie" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Online documentatie" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Commerciële ondersteuning" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "U heeft %s van de %s beschikbaren gebruikt" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Download de apps om bestanden te synchen" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Toon de Eerste start Wizard opnieuw" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Wachtwoord" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Je wachtwoord is veranderd" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Niet in staat om uw wachtwoord te wijzigen" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Huidig wachtwoord" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nieuw wachtwoord" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Wijzig wachtwoord" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Weergavenaam" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-mailadres" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Uw e-mailadres" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Taal" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Help met vertalen" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Inlognaam" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Creëer" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Default opslag" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Ongelimiteerd" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Andere" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Opslag" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "wijzig weergavenaam" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "Instellen nieuw wachtwoord" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Default" +msgstr "" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 2e4e387628..134646865c 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012-2013. -# , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -22,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Verwijderen serverconfiguratie mislukt" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "De configuratie is geldig en de verbinding is geslaagd!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "De configuratie is geldig, maar Bind mislukte. Controleer de serverinstellingen en inloggegevens." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "De configuratie is ongeldig. Controleer de ownCloud log voor meer details." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Verwijderen mislukt" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Overnemen instellingen van de recente serverconfiguratie?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Instellingen bewaren?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Kon de serverconfiguratie niet toevoegen" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Verbindingstest geslaagd" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Verbindingstest mislukt" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Wilt u werkelijk de huidige Serverconfiguratie verwijderen?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Bevestig verwijderen" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, het backend zal niet werken. Vraag uw systeembeheerder om de module te installeren." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Serverconfiguratie" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Toevoegen serverconfiguratie" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Host" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Base DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Een Base DN per regel" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Je kunt het Base DN voor gebruikers en groepen specificeren in het tab Geavanceerd." +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "User DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "De DN van de client gebruiker waarmee de verbinding zal worden gemaakt, bijv. uid=agent,dc=example,dc=com. Voor anonieme toegang laat je het DN en het wachtwoord leeg." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Wachtwoord" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Voor anonieme toegang, laat de DN en het wachtwoord leeg." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Gebruikers Login Filter" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Definiëerd de toe te passen filter indien er geprobeerd wordt in te loggen. %%uid vervangt de gebruikersnaam in de login actie." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "gebruik %%uid placeholder, bijv. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Gebruikers Lijst Filter" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definiëerd de toe te passen filter voor het ophalen van gebruikers." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "zonder een placeholder, bijv. \"objectClass=person\"" +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Groep Filter" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definiëerd de toe te passen filter voor het ophalen van groepen." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "zonder een placeholder, bijv. \"objectClass=posixGroup\"" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Verbindingsinstellingen" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Configuratie actief" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Als dit niet is ingeschakeld wordt deze configuratie overgeslagen." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Poort" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Backup (Replica) Host" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Opgeven optionele backup host. Het moet een replica van de hoofd LDAP/AD server." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Backup (Replica) Poort" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Deactiveren hoofdserver" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Wanneer ingeschakeld, zal ownCloud allen verbinden met de replicaserver." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Gebruik TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Gebruik het niet voor LDAPS verbindingen, dat gaat niet lukken." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Niet-hoofdlettergevoelige LDAP server (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Schakel SSL certificaat validatie uit." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Als de connectie alleen werkt met deze optie, importeer dan het LDAP server SSL certificaat naar je ownCloud server." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Niet aangeraden, gebruik alleen voor test doeleinden." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Cache time-to-live" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "in seconden. Een verandering maakt de cache leeg." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Mapinstellingen" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Gebruikers Schermnaam Veld" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Het te gebruiken LDAP attribuut voor het genereren van de ownCloud naam voor de gebruikers." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Basis Gebruikers Structuur" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Een User Base DN per regel" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Attributen voor gebruikerszoekopdrachten" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Optioneel; één attribuut per regel" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Groep Schermnaam Veld" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Het te gebruiken LDAP attribuut voor het genereren van de ownCloud naam voor de groepen." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Basis Groupen Structuur" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Een Group Base DN per regel" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Attributen voor groepszoekopdrachten" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Groepslid associatie" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Speciale attributen" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Quota veld" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Quota standaard" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "in bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "E-mailveld" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Gebruikers Home map naamgevingsregel" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Laat leeg voor de gebruikersnaam (standaard). Of, specificeer een LDAP/AD attribuut." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Test configuratie" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Help" +msgstr "" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 40265bd47a..15a01f7030 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -84,83 +82,83 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Søndag" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Måndag" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Tysdag" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Onsdag" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Torsdag" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Fredag" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Laurdag" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februar" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Mars" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "April" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mai" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Juni" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Juli" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "August" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Desember" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Innstillingar" +msgstr "" #: js/js.js:718 msgid "seconds ago" @@ -220,7 +218,7 @@ msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Kanseller" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" @@ -245,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Feil" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -295,9 +293,9 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Passord" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -396,11 +394,11 @@ msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Bruk føljane link til å tilbakestille passordet ditt: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Du vil få ei lenkje for å nullstilla passordet via epost." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -411,49 +409,49 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" -msgstr "Brukarnamn" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Be om nullstilling" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Passordet ditt er nullstilt" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Til innloggings sida" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nytt passord" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Nullstill passord" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personleg" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Brukarar" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Applikasjonar" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administrer" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Hjelp" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" @@ -461,7 +459,7 @@ msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Fann ikkje skyen" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -469,7 +467,7 @@ msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Legg til" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -511,95 +509,95 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Lag ein admin-konto" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avansert" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Datamappe" +msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" -msgstr "Konfigurer databasen" +msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" -msgstr "vil bli nytta" +msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" -msgstr "Databasebrukar" +msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" -msgstr "Databasepassord" +msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" -msgstr "Databasenamn" +msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" -msgstr "Databasetenar" +msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" -msgstr "Fullfør oppsettet" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Vev tjenester under din kontroll" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Logg ut" +msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" -msgstr "Gløymt passordet?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" #: templates/login.php:41 -msgid "remember" -msgstr "hugs" - -#: templates/login.php:43 msgid "Log in" -msgstr "Logg inn" +msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "førre" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "neste" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 33381bd293..9d846bc83f 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# erviker , 2012 -# unhammer , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -39,7 +37,7 @@ msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Ingen feil, fila vart lasta opp" +msgstr "" #: ajax/upload.php:27 msgid "" @@ -50,19 +48,19 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Fila vart berre delvis lasta opp" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Ingen filer vart lasta opp" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Manglar ei mellombels mappe" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" @@ -78,7 +76,7 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Filer" +msgstr "" #: js/fileactions.js:116 msgid "Share" @@ -90,7 +88,7 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Slett" +msgstr "" #: js/fileactions.js:194 msgid "Rename" @@ -191,19 +189,19 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Feil" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Namn" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Storleik" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Endra" +msgstr "" #: js/files.js:893 msgid "1 folder" @@ -223,7 +221,7 @@ msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Last opp" +msgstr "" #: templates/admin.php:5 msgid "File handling" @@ -231,7 +229,7 @@ msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksimal opplastingsstorleik" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " @@ -255,19 +253,19 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Lagre" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Ny" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Tekst fil" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Mappe" +msgstr "" #: templates/index.php:14 msgid "From link" @@ -287,11 +285,11 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Ingenting her. Last noko opp!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Last ned" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" @@ -299,13 +297,13 @@ msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "For stor opplasting" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Filene du prøver å laste opp er større enn maksgrensa til denne tenaren." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index ef0923d2a4..8e3b4ed5f7 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index bba5e236c2..a7abe0503e 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -95,16 +95,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupper" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Brukarar" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Slett" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 296e7f5ae1..713950e986 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 1924d58a15..1b89f13af1 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Feil" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Namn" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Slett" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index 3ab98c3053..0a5ad71179 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 5e13b5d53a..36c19a875a 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,19 +19,19 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Hjelp" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personleg" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Innstillingar" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Brukarar" +msgstr "" #: app.php:398 msgid "Apps" @@ -39,7 +39,7 @@ msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administrer" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." @@ -67,7 +67,7 @@ msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Feil i autentisering" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,11 +75,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Filer" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Tekst" +msgstr "" #: search/provider/file.php:29 msgid "Images" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 71d3ac93e2..981816bcb2 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# erviker , 2012 -# , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -21,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Klarer ikkje å laste inn liste fra App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Feil i autentisering" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -50,11 +48,11 @@ msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-postadresse lagra" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Ugyldig e-postadresse" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -66,11 +64,11 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Språk endra" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Ugyldig førespurnad" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -96,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Slå av" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Slå på" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -108,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Feil" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -141,7 +139,7 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupper" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" @@ -149,7 +147,7 @@ msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Slett" +msgstr "" #: js/users.js:262 msgid "add group" @@ -169,7 +167,7 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Nynorsk" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" @@ -350,7 +348,7 @@ msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Vel ein applikasjon" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" @@ -362,7 +360,7 @@ msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Oppdater" +msgstr "" #: templates/help.php:4 msgid "User Documentation" @@ -403,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Passord" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -411,19 +409,19 @@ msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Klarte ikkje å endra passordet" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Passord" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nytt passord" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Endra passord" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -431,23 +429,23 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Epost" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Din epost addresse" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Fyll inn din e-post addresse for og kunne motta passord tilbakestilling" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Språk" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Hjelp oss å oversett" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -463,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Lag" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -475,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Anna" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index f15d6449f3..3818ee5a20 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Hjelp" +msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index dc0d3fe376..958b583b28 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# tartafione , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -48,7 +47,7 @@ msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Pas de categoria d'ajustar ?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -74,7 +73,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Pas de categorias seleccionadas per escafar." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -83,91 +82,91 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Dimenge" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Diluns" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Dimarç" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Dimecres" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Dijòus" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Divendres" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Dissabte" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Genièr" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Febrièr" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Març" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Abril" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mai" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Junh" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Julhet" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Agost" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Septembre" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Octobre" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Novembre" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Decembre" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Configuracion" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "segonda a" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minuta a" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" @@ -183,11 +182,11 @@ msgstr "" #: js/js.js:723 msgid "today" -msgstr "uèi" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "ièr" +msgstr "" #: js/js.js:725 msgid "{days} days ago" @@ -195,7 +194,7 @@ msgstr "" #: js/js.js:726 msgid "last month" -msgstr "mes passat" +msgstr "" #: js/js.js:727 msgid "{months} months ago" @@ -203,35 +202,35 @@ msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "meses a" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "an passat" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "ans a" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "D'accòrdi" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Anulla" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Causís" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Òc" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Non" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -244,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Error" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -260,19 +259,19 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Parteja" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Error al partejar" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Error al non partejar" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Error al cambiar permissions" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" @@ -284,19 +283,19 @@ msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Parteja amb" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Parteja amb lo ligam" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Parat per senhal" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Senhal" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -308,23 +307,23 @@ msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Met la data d'expiracion" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Data d'expiracion" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Parteja tras corrièl :" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Deguns trobat" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Tornar partejar es pas permis" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" @@ -332,43 +331,43 @@ msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Non parteje" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "pòt modificar" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "Contraròtle d'acces" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "crea" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "met a jorn" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "escafa" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "parteja" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Parat per senhal" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Error al metre de la data d'expiracion" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Error setting expiration date" +msgstr "" #: js/share.js:604 msgid "Sending ..." @@ -391,15 +390,15 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "senhal d'ownCloud tornat botar" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Utiliza lo ligam seguent per tornar botar lo senhal : {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Reçaupràs un ligam per tornar botar ton senhal via corrièl." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -412,68 +411,68 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nom d'usancièr" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Tornar botar requesit" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Ton senhal es estat tornat botar" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Pagina cap al login" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Senhal nòu" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Senhal tornat botar" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personal" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Usancièrs" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Apps" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Ajuda" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acces enebit" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Nívol pas trobada" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Edita categorias" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Ajusta" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Avertiment de securitat" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -510,57 +509,57 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Crea un compte admin" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avançat" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Dorsièr de donadas" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configura la basa de donadas" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "serà utilizat" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Usancièr de la basa de donadas" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Senhal de la basa de donadas" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nom de la basa de donadas" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Espandi de taula de basa de donadas" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Òste de basa de donadas" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Configuracion acabada" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Services web jos ton contraròtle" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Sortida" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" @@ -578,15 +577,15 @@ msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "L'as perdut lo senhal ?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "bremba-te" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Dintrada" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -594,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "dariièr" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "venent" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 4db4af7b00..e72e4d9080 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# tartafione , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -38,7 +37,7 @@ msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Amontcargament capitat, pas d'errors" +msgstr "" #: ajax/upload.php:27 msgid "" @@ -49,23 +48,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Lo fichièr foguèt pas completament amontcargat" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Cap de fichièrs son estats amontcargats" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Un dorsièr temporari manca" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "L'escriptura sul disc a fracassat" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -77,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Fichièrs" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Parteja" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -89,15 +88,15 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Escafa" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Torna nomenar" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Al esperar" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" @@ -105,15 +104,15 @@ msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "remplaça" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "nom prepausat" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "anulla" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" @@ -121,7 +120,7 @@ msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "defar" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -129,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 fichièr al amontcargar" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -165,7 +164,7 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -173,12 +172,12 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Amontcargar anullat." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." @@ -190,19 +189,19 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Error" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nom" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Talha" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modificat" +msgstr "" #: js/files.js:893 msgid "1 folder" @@ -222,51 +221,51 @@ msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Amontcarga" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Manejament de fichièr" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Talha maximum d'amontcargament" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max. possible: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Requesit per avalcargar gropat de fichièrs e dorsièr" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Activa l'avalcargament de ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 es pas limitat" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Talha maximum de dintrada per fichièrs ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Enregistra" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nòu" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Fichièr de tèxte" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Dorsièr" +msgstr "" #: templates/index.php:14 msgid "From link" @@ -278,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr " Anulla l'amontcargar" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -286,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Pas res dedins. Amontcarga qualquaren" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Avalcarga" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Non parteja" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Amontcargament tròp gròs" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Los fiichièrs son a èsser explorats, " +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Exploracion en cors" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index a7fbf59235..3fbf4c0e83 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index ca73b15b03..46037d0283 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -95,16 +95,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grops" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Usancièrs" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Escafa" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index f250912c1e..6ad93cb752 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index a631653516..af362fe592 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Error" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nom" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Escafa" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index eea377d183..0c94025552 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index df4835c6ea..3cf9f33355 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# tartafione , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -20,39 +19,39 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Ajuda" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personal" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Configuracion" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Usancièrs" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Apps" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Avalcargar los ZIP es inactiu." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Los fichièrs devan èsser avalcargats un per un." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Torna cap als fichièrs" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." @@ -68,7 +67,7 @@ msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Error d'autentificacion" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." @@ -76,7 +75,7 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Fichièrs" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" @@ -114,88 +113,88 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "segonda a" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minuta a" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minutas a" +msgstr "" #: template.php:116 msgid "1 hour ago" @@ -208,20 +207,20 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "uèi" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "ièr" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d jorns a" +msgstr "" #: template.php:121 msgid "last month" -msgstr "mes passat" +msgstr "" #: template.php:122 #, php-format @@ -230,11 +229,11 @@ msgstr "" #: template.php:123 msgid "last year" -msgstr "an passat" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "ans a" +msgstr "" #: updater.php:78 #, php-format @@ -243,11 +242,11 @@ msgstr "" #: updater.php:81 msgid "up to date" -msgstr "a jorn" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "la verificacion de mesa a jorn es inactiva" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index c107e54ecc..5e111cdbdb 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# tartafione , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -20,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Pas possible de cargar la tièra dempuèi App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Error d'autentificacion" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -37,39 +36,39 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Lo grop existís ja" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Pas capable d'apondre un grop" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Pòt pas activar app. " +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Corrièl enregistrat" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Corrièl incorrècte" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Pas capable d'escafar un grop" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Pas capable d'escafar un usancièr" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Lengas cambiadas" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Demanda invalida" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -78,12 +77,12 @@ msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Pas capable d'apondre un usancièr al grop %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Pas capable de tira un usancièr del grop %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -95,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Desactiva" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Activa" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -107,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Error" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -123,15 +122,15 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Enregistra..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "escafat" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "defar" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -140,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grops" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grop Admin" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Escafa" +msgstr "" #: js/users.js:262 msgid "add group" @@ -168,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Avertiment de securitat" +msgstr "" #: templates/admin.php:18 msgid "" @@ -341,7 +340,7 @@ msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Ajusta ton App" +msgstr "" #: templates/apps.php:12 msgid "More Apps" @@ -349,15 +348,15 @@ msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Selecciona una applicacion" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Agacha la pagina d'applications en cò de apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licençiat per " +msgstr "" #: templates/apps.php:38 msgid "Update" @@ -402,27 +401,27 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Senhal" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Ton senhal a cambiat" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Pas possible de cambiar ton senhal" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Senhal en cors" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Senhal novèl" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Cambia lo senhal" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -430,23 +429,23 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Corrièl" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Ton adreiça de corrièl" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Lenga" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Ajuda a la revirada" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -462,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Crea" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -474,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Autres" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 00048980bf..e26cabc85d 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Fracàs d'escafatge" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Ajuda" +msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 3490807165..7f505c8d7e 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -3,25 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki , 2012 -# Cyryl Sochacki , 2012-2013 -# Kamil Domański , 2011 -# szymon.filip , 2012 -# Maciej Tarmas , 2013 -# Marcin Małecki , 2011, 2012 -# Marcin Małecki , 2011 -# mgrvnwald , 2013 -# emc , 2013 -# , 2011 -# emc , 2012 -# Piotr Sokół , 2012 -# emilia.krawczyk , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -33,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Użytkownik %s udostępnił ci plik" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Użytkownik %s udostępnił ci folder" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Użytkownik %s udostępnił ci plik „%s”. Możesz pobrać go stąd: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Użytkownik %s udostępnił ci folder „%s”. Możesz pobrać go stąd: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Nie podano typu kategorii." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Brak kategorii do dodania?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Ta kategoria już istnieje: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Nie podano typu obiektu." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "Nie podano ID %s." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Błąd podczas dodawania %s do ulubionych." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Nie zaznaczono kategorii do usunięcia." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Błąd podczas usuwania %s z ulubionych." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Niedziela" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Poniedziałek" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Wtorek" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Środa" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Czwartek" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Piątek" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sobota" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Styczeń" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Luty" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Marzec" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Kwiecień" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maj" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Czerwiec" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Lipiec" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Sierpień" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Wrzesień" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Październik" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Listopad" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Grudzień" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Ustawienia" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sekund temu" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minutę temu" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minut temu" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 godzinę temu" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} godzin temu" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "dziś" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "wczoraj" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} dni temu" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "w zeszłym miesiącu" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} miesięcy temu" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "miesięcy temu" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "w zeszłym roku" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "lat temu" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "OK" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Anuluj" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Wybierz" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Tak" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nie" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Nie określono typu obiektu." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -256,363 +243,363 @@ msgstr "Nie określono typu obiektu." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Błąd" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Nie określono nazwy aplikacji." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Wymagany plik {file} nie jest zainstalowany!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Udostępniono" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Udostępnij" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Błąd podczas współdzielenia" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Błąd podczas zatrzymywania współdzielenia" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Błąd przy zmianie uprawnień" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Udostępnione tobie i grupie {group} przez {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Udostępnione tobie przez {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Współdziel z" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Współdziel wraz z odnośnikiem" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Zabezpiecz hasłem" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Hasło" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Wyślij osobie odnośnik poprzez e-mail" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Wyślij" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Ustaw datę wygaśnięcia" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Data wygaśnięcia" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Współdziel poprzez e-mail:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Nie znaleziono ludzi" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Współdzielenie nie jest możliwe" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Współdzielone w {item} z {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Zatrzymaj współdzielenie" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "może edytować" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "kontrola dostępu" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "utwórz" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "uaktualnij" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "usuń" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "współdziel" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Zabezpieczone hasłem" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Błąd podczas usuwania daty wygaśnięcia" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Błąd podczas ustawiania daty wygaśnięcia" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Wysyłanie..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "E-mail wysłany" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem spoleczności ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "restart hasła ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Użyj tego odnośnika by zresetować hasło: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Wysłano e-mail resetujący." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Żądanie nieudane!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nazwa użytkownika" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Żądanie resetowania" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Zresetowano hasło" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Do strony logowania" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nowe hasło" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Zresetuj hasło" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Osobiste" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Użytkownicy" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplikacje" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administrator" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Pomoc" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Dostęp zabroniony" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Nie odnaleziono chmury" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Edytuj kategorie" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Dodaj" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Ostrzeżenie o zabezpieczeniach" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Proszę uaktualnij swoją instalacje PHP, aby używać ownCloud bezpiecznie." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Bezpieczny generator liczb losowych jest niedostępny. Włącz rozszerzenie OpenSSL w PHP." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Bez bezpiecznego generatora liczb losowych, osoba atakująca może przewidzieć token resetujący hasło i przejąć kontrolę nad twoim kontem." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu internetu, ponieważ plik .htaccess nie działa." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Aby uzyskać informacje dotyczące prawidłowej konfiguracji serwera, sięgnij do dokumentacji." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Utwórz konta administratora" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Zaawansowane" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Katalog danych" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Skonfiguruj bazę danych" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "zostanie użyte" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Użytkownik bazy danych" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Hasło do bazy danych" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nazwa bazy danych" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Obszar tabel bazy danych" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Komputer bazy danych" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Zakończ konfigurowanie" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "usługi internetowe pod kontrolą" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Wyloguj" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatyczne logowanie odrzucone!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Jeśli hasło było dawno niezmieniane, twoje konto może być zagrożone!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Nie pamiętasz hasła?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "pamiętaj" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Zaloguj" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternatywne loginy" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "wstecz" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "naprzód" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać." +msgstr "" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index ee89e62d51..c68e2d1b0c 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -3,22 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# bbartlomiej , 2013 -# Cyryl Sochacki , 2012 -# Cyryl Sochacki , 2012-2013 -# Maciej Tarmas , 2013 -# Marcin Małecki , 2011-2012 -# Mariusz Fik , 2013 -# , 2011 -# emc , 2012 -# Piotr Sokół , 2012 -# Thomasso , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -30,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Nie można było przenieść %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Nie można zmienić nazwy pliku" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Żaden plik nie został załadowany. Nieznany błąd" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Przesłano plik" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Załadowany plik został wysłany tylko częściowo." +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Nie przesłano żadnego pliku" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Brak katalogu tymczasowego" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Błąd zapisu na dysk" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Za mało dostępnego miejsca" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Zła ścieżka." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Pliki" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Udostępnij" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Trwale usuń" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Usuń" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Zmień nazwę" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Oczekujące" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} już istnieje" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "zastąp" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "zasugeruj nazwę" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "anuluj" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "zastąpiono {new_name} przez {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "cofnij" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "wykonaj operację usunięcia" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 plik wczytywany" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "pliki wczytane" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "„.” jest nieprawidłową nazwą pliku." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Nazwa pliku nie może być pusta." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Twój magazyn jest prawie pełny ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nie można wczytać pliku, ponieważ jest on katalogiem lub ma 0 bajtów" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Za mało miejsca" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Wczytywanie anulowane." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL nie może być pusty." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zarezerwowane dla ownCloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Błąd" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nazwa" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Rozmiar" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modyfikacja" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 folder" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "Ilość folderów: {count}" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 plik" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "Ilość plików: {count}" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Prześlij" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Zarządzanie plikami" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksymalny rozmiar wysyłanego pliku" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maks. możliwy:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Wymagany do pobierania wielu plików i folderów" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Włącz pobieranie ZIP-paczki" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 - bez limitów" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Maksymalna wielkość pliku wejściowego ZIP " +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Zapisz" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nowy" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Plik tekstowy" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Katalog" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Z odnośnika" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Pliki usunięte" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Anuluj wysyłanie" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Nie masz uprawnień do zapisu w tym miejscu." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Pusto. Wyślij coś!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Pobierz" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Nie udostępniaj" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Wysyłany plik ma za duży rozmiar" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Skanowanie plików, proszę czekać." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Aktualnie skanowane" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Uaktualnianie plików pamięci podręcznej..." +msgstr "" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index c2357401d8..6e8a47a2e4 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bartek Krawczyk , 2013. -# Cyryl Sochacki <>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Szyfrowanie" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Szyfrowanie plików jest włączone" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Poniższe typy plików nie będą szyfrowane:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Wyłącz poniższe typy plików z szyfrowania:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Brak" +msgstr "" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 10d50d5332..53b220df64 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki , 2012 -# Cyryl Sochacki , 2012 -# Maciej Tarmas , 2013 -# Marcin Małecki , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -23,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Dostęp do" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Wystąpił błąd podczas konfigurowania zasobu Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Udziel dostępu" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Ostrzeżenie: Wsparcie dla FTP w PHP nie jest zainstalowane lub włączone. Skontaktuj sie z administratorem w celu zainstalowania lub włączenia go." +msgstr "" #: lib/config.php:437 msgid "" @@ -63,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Zewnętrzna zasoby dyskowe" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nazwa folderu" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Zewnętrzne zasoby dyskowe" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Konfiguracja" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opcje" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Zastosowanie" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Dodaj zasoby dyskowe" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Nie ustawione" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Wszyscy uzytkownicy" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupy" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Użytkownicy" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Usuń" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Włącz zewnętrzne zasoby dyskowe użytkownika" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Zezwalaj użytkownikom na montowanie ich własnych zewnętrznych zasobów dyskowych" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Główny certyfikat SSL" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importuj główny certyfikat" +msgstr "" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 4007f347ff..9df6efb9e9 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki <>, 2012. -# , 2012. -# Paweł Ciecierski , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -22,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Hasło" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Wyślij" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s współdzieli folder z tobą %s" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s współdzieli z tobą plik %s" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Pobierz" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Podgląd nie jest dostępny dla" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "Kontrolowane serwisy" +msgstr "" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 284ff04071..6b55ac50ec 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Nie można trwale usunąć %s" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Nie można przywrócić %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "wykonywanie operacji przywracania" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Błąd" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "trwale usuń plik" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Trwale usuń" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nazwa" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Usunięte" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 folder" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} foldery" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 plik" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} pliki" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Nic tu nie ma. Twój kosz jest pusty!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Przywróć" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Usuń" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Usunięte pliki" +msgstr "" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index 28ab5a893c..b399940404 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bartek Krawczyk , 2013. -# Cyryl Sochacki <>, 2012. -# Maciej Tarmas , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -24,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Nie można było przywrócić: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "sukces" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Plik %s został przywrócony do wersji %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "porażka" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Plik %s nie mógł być przywrócony do wersji %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Nie są dostępne żadne starsze wersje" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Nie podano ścieżki" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Wersje" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Przywróć plik do poprzedniej wersji klikając w jego przycisk przywrócenia" +msgstr "" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index dbc02c98d2..93749f2c07 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki , 2012 -# Cyryl Sochacki , 2012-2013 -# Maciej Tarmas , 2013 -# Marcin Małecki , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -23,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Pomoc" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Osobiste" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Ustawienia" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Użytkownicy" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplikacje" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administrator" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Pobieranie ZIP jest wyłączone." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Pliki muszą zostać pobrane pojedynczo." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Wróć do plików" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "nie może zostać znaleziony" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Aplikacja nie jest włączona" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Błąd uwierzytelniania" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token wygasł. Proszę ponownie załadować stronę." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Pliki" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Połączenie tekstowe" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Obrazy" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Ustaw nazwę administratora." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Ustaw hasło administratora." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s wpisz nazwę użytkownika do bazy" +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s wpisz nazwę bazy." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s nie można używać kropki w nazwie bazy danych" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s ustaw hosta bazy danych." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL: Nazwa użytkownika i/lub hasło jest niepoprawne" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Należy wprowadzić istniejące konto użytkownika lub administratora." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle: Nazwa użytkownika i/lub hasło jest niepoprawne" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL: Nazwa użytkownika i/lub hasło jest niepoprawne" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Błąd DB: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Niepoprawna komenda: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Użytkownik MySQL '%s'@'localhost' już istnieje" +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Usuń tego użytkownika z MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Użytkownik MySQL '%s'@'%%t' już istnieje" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Usuń tego użytkownika z MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Niepoprawne polecania: \"%s\", nazwa: %s, hasło: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nazwa i/lub hasło serwera MS SQL jest niepoprawne: %s." +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Serwer www nie jest jeszcze poprawnie ustawiony, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony. Sprawdź ustawienia serwera." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Proszę sprawdź ponownie przewodnik instalacji." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sekund temu" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minutę temu" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minut temu" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 godzine temu" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d godzin temu" +msgstr "" #: template.php:118 msgid "today" -msgstr "dzisiaj" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "wczoraj" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d dni temu" +msgstr "" #: template.php:121 msgid "last month" -msgstr "ostatni miesiąc" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d miesiecy temu" +msgstr "" #: template.php:123 msgid "last year" -msgstr "ostatni rok" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "lat temu" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s jest dostępna. Uzyskaj więcej informacji" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "Aktualne" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "wybór aktualizacji jest wyłączony" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Nie można odnaleźć kategorii \"%s\"" +msgstr "" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 0ed9670821..0d0db9cf7e 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -3,26 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# b13n1u , 2013 -# bbartlomiej , 2013 -# Cyryl Sochacki , 2012 -# Cyryl Sochacki , 2012-2013 -# Robin Appelman , 2012 -# Kamil Domański , 2011 -# Maciej Tarmas , 2013 -# Marcin Małecki , 2011, 2012 -# Marcin Małecki , 2011 -# emc , 2013 -# , 2011 -# emc , 2012 -# Piotr Sokół , 2012 -# Thomasso , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -33,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Nie można wczytać listy aplikacji" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Błąd uwierzytelniania" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -46,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Nie można zmienić wyświetlanej nazwy" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Grupa już istnieje" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Nie można dodać grupy" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Nie można włączyć aplikacji." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-mail zapisany" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Nieprawidłowy e-mail" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Nie można usunąć grupy" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Nie można usunąć użytkownika" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Zmieniono język" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Nieprawidłowe żądanie" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administratorzy nie mogą usunąć siebie samych z grupy administratorów" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Nie można dodać użytkownika do grupy %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Nie można usunąć użytkownika z grupy %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Nie można uaktualnić aplikacji." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Aktualizacja do {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Wyłącz" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Włącz" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Proszę czekać..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Błąd" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Aktualizacja w toku..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Błąd podczas aktualizacji aplikacji" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Zaktualizowano" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Zapisywanie..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "usunięto" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "cofnij" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Nie można usunąć użytkownika" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupy" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Administrator grupy" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Usuń" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "dodaj grupę" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Należy podać prawidłową nazwę użytkownika" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Błąd podczas tworzenia użytkownika" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Należy podać prawidłowe hasło" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "polski" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Ostrzeżenie o zabezpieczeniach" +msgstr "" #: templates/admin.php:18 msgid "" @@ -194,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Katalog danych i twoje pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess dostarczony przez ownCloud nie działa. Zalecamy skonfigurowanie serwera internetowego w taki sposób, aby katalog z danymi nie był dostępny lub przeniesienie katalogu z danymi poza katalog główny serwera internetowego." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Ostrzeżenia konfiguracji" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Sprawdź ponownie przewodniki instalacji." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Brak modułu „fileinfo”" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Lokalizacja nie działa" +msgstr "" #: templates/admin.php:63 #, php-format @@ -231,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Ten serwer ownCloud nie może włączyć ustawień regionalnych %s. Może to oznaczać, że wystąpiły problemy z niektórymi znakami w nazwach plików. Zalecamy instalację wymaganych pakietów na tym systemie w celu wsparcia %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Połączenie internetowe nie działa" +msgstr "" #: templates/admin.php:78 msgid "" @@ -245,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Ten serwer OwnCloud nie ma działającego połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub instalacja dodatkowych aplikacji nie będą działać. Dostęp do plików z zewnątrz i wysyłanie powiadomień e-mail może również nie działać. Sugerujemy, aby włączyć połączenie internetowe dla tego serwera, jeśli chcesz korzystać ze wszystkich funkcji ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php jest zarejestrowany w usłudze webcron. Przywołaj stronę cron.php w katalogu głównym ownCloud raz na minutę przez http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Użyj systemowej usługi cron. Przywołaj plik cron.php z katalogu ownCloud przez systemowy cronjob raz na minutę." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Udostępnianie" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Włącz API udostępniania" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Zezwalaj na odnośniki" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Zezwalaj na ponowne udostępnianie" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Bezpieczeństwo" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Wymuś HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Wymusza na klientach na łączenie się ownCloud za pośrednictwem połączenia szyfrowanego." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Proszę połącz się do tej instancji ownCloud za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Logi" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Poziom logów" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Więcej" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Mniej" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Wersja" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -350,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Stworzone przez społeczność ownCloud, kod źródłowy na licencji AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Dodaj swoją aplikację" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Więcej aplikacji" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Zaznacz aplikację" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Zobacz stronę aplikacji na apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licencjonowane przez " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Zaktualizuj" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Dokumentacja użytkownika" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Dokumentacja administratora" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Dokumentacja online" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Zgłaszanie błędów" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Wsparcie komercyjne" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Wykorzystujesz %s z dostępnych %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Pobierz aplikacje żeby synchronizować swoje pliki" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Uruchom ponownie kreatora pierwszego uruchomienia" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Hasło" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Twoje hasło zostało zmienione" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Nie można zmienić hasła" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Bieżące hasło" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nowe hasło" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Zmień hasło" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Wyświetlana nazwa" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-mail" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Twój adres e-mail" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Język" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Pomóż w tłumaczeniu" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Login" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Utwórz" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Magazyn domyślny" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Bez limitu" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Inne" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Magazyn" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "zmień wyświetlaną nazwę" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "ustaw nowe hasło" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Domyślny" +msgstr "" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 48697cda32..a33449f209 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2013. -# Maciej Tarmas , 2013. -# Marcin Małecki , 2012. -# Paweł Ciecierski , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -24,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Nie można usunąć konfiguracji serwera" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Konfiguracja jest prawidłowa i można ustanowić połączenie!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Konfiguracja jest prawidłowa, ale Bind nie. Sprawdź ustawienia serwera i poświadczenia." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Konfiguracja jest nieprawidłowa. Proszę przejrzeć logi dziennika ownCloud " +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Skasowanie nie powiodło się" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Przejmij ustawienia z ostatnich konfiguracji serwera?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Zachować ustawienia?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Nie można dodać konfiguracji serwera" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Test połączenia udany" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Test połączenia nie udany" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Czy chcesz usunąć bieżącą konfigurację serwera?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Potwierdź usunięcie" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Ostrzeżenie: Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Ostrzeżenie: Moduł PHP LDAP nie jest zainstalowany i nie będzie działał. Poproś administratora o włączenie go." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Konfiguracja servera" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Dodaj konfigurację servera" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Host" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Można pominąć protokół, z wyjątkiem wymaganego protokołu SSL. Następnie uruchom z ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Baza DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Jedna baza DN na linię" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Bazę DN można określić dla użytkowników i grup w karcie Zaawansowane" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Użytkownik DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN użytkownika klienta, z którym powiązanie wykonuje się, np. uid=agent,dc=example,dc=com. Dla dostępu anonimowego pozostawić DN i hasło puste" +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Hasło" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Dla dostępu anonimowego pozostawić DN i hasło puste." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtr logowania użytkownika" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Definiuje filtr do zastosowania, gdy podejmowana jest próba logowania. %%uid zastępuje nazwę użytkownika w działaniu logowania." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "Użyj %%uid zastępczy, np. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Lista filtrów użytkownika" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definiuje filtry do zastosowania, podczas pobierania użytkowników." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "bez żadnych symboli zastępczych np. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Grupa filtrów" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definiuje filtry do zastosowania, podczas pobierania grup." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "bez żadnych symboli zastępczych np. \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Konfiguracja połączeń" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Konfiguracja archiwum" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Gdy niezaznaczone, ta konfiguracja zostanie pominięta." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Kopia zapasowa (repliki) host" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Dać opcjonalnie hosta kopii zapasowej . To musi być repliką głównego serwera LDAP/AD." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Kopia zapasowa (repliki) Port" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Wyłącz serwer główny" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Po włączeniu, ownCloud tylko połączy się z serwerem repliki." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Użyj TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Nie używaj go dodatkowo dla połączeń protokołu LDAPS, zakończy się niepowodzeniem." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Wielkość liter serwera LDAP (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Wyłączyć sprawdzanie poprawności certyfikatu SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Jeśli połączenie działa tylko z tą opcją, zaimportuj certyfikat SSL serwera LDAP w serwerze ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Niezalecane, użyj tylko testowo." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Przechowuj czas życia" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "w sekundach. Zmiana opróżnia pamięć podręczną." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Ustawienia katalogów" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Pole wyświetlanej nazwy użytkownika" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atrybut LDAP służy do generowania nazwy użytkownika ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Drzewo bazy użytkowników" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Jeden użytkownik Bazy DN na linię" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Szukaj atrybutów" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Opcjonalnie; jeden atrybut w wierszu" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Pole wyświetlanej nazwy grupy" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atrybut LDAP służy do generowania nazwy grup ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Drzewo bazy grup" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Jedna grupa bazy DN na linię" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Grupa atrybutów wyszukaj" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Członek grupy stowarzyszenia" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Specjalne atrybuty" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Pole przydziału" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Przydział domyślny" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "w bajtach" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Pole email" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Reguły nazewnictwa folderu domowego użytkownika" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Pozostaw puste dla user name (domyślnie). W przeciwnym razie podaj atrybut LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Konfiguracja testowa" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Pomoc" +msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index c739d9d083..cbcdd0e1ca 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -3,24 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# dudanogueira , 2012 -# dudanogueira , 2011 -# FredMaranhao , 2012 -# Schopfer , 2012 -# Guilherme Maluf Balzana , 2012 -# henriquemeira , 2012 -# sedir , 2012 -# Rodrigo Tavares , 2013 -# sedir , 2013 -# Thiago Vicente , 2012 -# Unforgiving Fallout <>, 2012 -# Van Der Fran , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -32,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "O usuário %s compartilhou um arquivo com você" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "O usuário %s compartilhou uma pasta com você" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "O usuário %s compartilhou com você o arquivo \"%s\", que está disponível para download em: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "O usuário %s compartilhou com você a pasta \"%s\", que está disponível para download em: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Tipo de categoria não fornecido." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Nenhuma categoria a adicionar?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Esta categoria já existe: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "tipo de objeto não fornecido." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID não fornecido(s)." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Erro ao adicionar %s aos favoritos." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Nenhuma categoria selecionada para excluir." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Erro ao remover %s dos favoritos." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Domingo" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Segunda-feira" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Terça-feira" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Quarta-feira" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Quinta-feira" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Sexta-feira" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sábado" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "janeiro" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "fevereiro" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "março" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "abril" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "maio" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "junho" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "julho" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "agosto" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "setembro" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "outubro" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "novembro" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "dezembro" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Configurações" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "segundos atrás" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minuto atrás" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minutos atrás" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 hora atrás" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} horas atrás" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "hoje" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "ontem" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} dias atrás" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "último mês" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} meses atrás" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "meses atrás" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "último ano" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "anos atrás" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Cancelar" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Escolha" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Sim" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Não" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "O tipo de objeto não foi especificado." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -255,363 +243,363 @@ msgstr "O tipo de objeto não foi especificado." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Erro" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "O nome do app não foi especificado." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "O arquivo {file} necessário não está instalado!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Compartilhados" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Compartilhar" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Erro ao compartilhar" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Erro ao descompartilhar" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Erro ao mudar permissões" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Compartilhado com você e com o grupo {group} por {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Compartilhado com você por {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Compartilhar com" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Compartilhar com link" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Proteger com senha" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Senha" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Enviar link por e-mail" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Enviar" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Definir data de expiração" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Data de expiração" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Compartilhar via e-mail:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Nenhuma pessoa encontrada" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Não é permitido re-compartilhar" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Compartilhado em {item} com {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Descompartilhar" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "pode editar" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "controle de acesso" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "criar" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "atualizar" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "remover" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "compartilhar" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Protegido com senha" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Erro ao remover data de expiração" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Erro ao definir data de expiração" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Enviando ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "E-mail enviado" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "A atualização falhou. Por favor, relate este problema para a comunidade ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "A atualização teve êxito. Você será redirecionado ao ownCloud agora." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Redefinir senha ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Use o seguinte link para redefinir sua senha: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Você receberá um link para redefinir sua senha por e-mail." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Email de redefinição de senha enviado." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "A requisição falhou!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Nome de Usuário" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Pedir redefinição" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Sua senha foi redefinida" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Para a página de login" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nova senha" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Redefinir senha" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Pessoal" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Usuários" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Apps" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Ajuda" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acesso proibido" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud não encontrado" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Editar categorias" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Adicionar" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Aviso de Segurança" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Sua versão do PHP está vulnerável ao ataque NULL Byte (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Por favor atualize sua instalação do PHP para utilizar o ownCloud de forma segura." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Nenhum gerador de número aleatório de segurança disponível. Habilite a extensão OpenSSL do PHP." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sem um gerador de número aleatório de segurança, um invasor pode ser capaz de prever os símbolos de redefinição de senhas e assumir sua conta." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Seu diretório de dados e arquivos são provavelmente acessíveis pela internet, porque o .htaccess não funciona." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Para obter informações sobre como configurar corretamente o seu servidor, consulte a documentação." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Criar uma conta de administrador" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avançado" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Pasta de dados" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configurar o banco de dados" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "será usado" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Usuário do banco de dados" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Senha do banco de dados" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nome do banco de dados" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Espaço de tabela do banco de dados" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Host do banco de dados" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Concluir configuração" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "serviços web sob seu controle" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Sair" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Entrada Automática no Sistema Rejeitada!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Por favor troque sua senha para tornar sua conta segura novamente." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Esqueceu sua senha?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "lembrar" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Fazer login" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Logins alternativos" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "anterior" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "próximo" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Atualizando ownCloud para a versão %s, isto pode levar algum tempo." +msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index c3cf7f7e71..3c0c48f891 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -3,24 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# dudanogueira , 2013 -# dudanogueira , 2012 -# FredMaranhao , 2012 -# Guilherme Maluf Balzana , 2012 -# sedir , 2012 -# Rodrigo Tavares , 2013 -# sedir , 2013 -# targinosilveira , 2012 -# Thiago Vicente , 2012 -# tuliouel , 2013 -# Unforgiving Fallout <>, 2012 -# Van Der Fran , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -32,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Impossível mover %s - Um arquivo com este nome já existe" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Impossível mover %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Impossível renomear arquivo" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Nenhum arquivo foi enviado. Erro desconhecido" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Não houve nenhum erro, o arquivo foi transferido com sucesso" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "O arquivo foi transferido parcialmente" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Nenhum arquivo foi transferido" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Pasta temporária não encontrada" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Falha ao escrever no disco" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Espaço de armazenamento insuficiente" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Diretório inválido." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Arquivos" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Compartilhar" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Excluir permanentemente" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Excluir" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Renomear" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Pendente" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} já existe" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "substituir" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "sugerir nome" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "cancelar" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "Substituído {old_name} por {new_name} " +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "desfazer" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "realizar operação de exclusão" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "enviando 1 arquivo" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "enviando arquivos" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' é um nome de arquivo inválido." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "O nome do arquivo não pode estar vazio." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Seu armazenamento está quase cheio ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Impossível enviar seus arquivo por ele ser um diretório ou ter 0 bytes." +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Espaço de armazenamento insuficiente" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Envio cancelado." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL não pode ficar em branco" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Erro" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nome" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Tamanho" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modificado" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 pasta" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} pastas" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 arquivo" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} arquivos" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Carregar" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Tratamento de Arquivo" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Tamanho máximo para carregar" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max. possível:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Necessário para download de múltiplos arquivos e diretórios." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Habilitar ZIP-download" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 para ilimitado" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Tamanho máximo para arquivo ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Salvar" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Novo" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Arquivo texto" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Pasta" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Do link" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Arquivos apagados" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Cancelar upload" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Você não possui permissão de escrita aqui." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Nada aqui.Carrege alguma coisa!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Baixar" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Descompartilhar" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Arquivo muito grande" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Arquivos sendo escaneados, por favor aguarde." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Scanning atual" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Atualizando cache do sistema de arquivos..." +msgstr "" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 66f9c4e029..9900f5a13c 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Rodrigo Tavares , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Criptografia" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "A criptografia de arquivos está ativada." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Os seguintes tipos de arquivo não serão criptografados:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Excluir os seguintes tipos de arquivo da criptografia:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Nenhuma" +msgstr "" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 146f81b59f..e9628a80e6 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# dudanogueira , 2013 -# sedir , 2012 -# Rodrigo Tavares , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -22,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Acesso concedido" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Erro ao configurar armazenamento do Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Permitir acesso" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Por favor forneça um app key e secret válido do Dropbox" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Erro ao configurar armazenamento do Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Aviso: O suporte para FTP do PHP não está ativado ou instalado. Impossível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo." +msgstr "" #: lib/config.php:437 msgid "" @@ -62,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Armazenamento Externo" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nome da pasta" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Armazenamento Externo" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Configuração" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opções" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Aplicável" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Adicionar Armazenamento" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Nenhum definido" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Todos os Usuários" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupos" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Usuários" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Remover" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Habilitar Armazenamento Externo do Usuário" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Permitir usuários a montar seus próprios armazenamentos externos" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Certificados SSL raíz" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importar Certificado Raíz" +msgstr "" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 52bc451ea0..324304370b 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Senha" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Submeter" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s compartilhou a pasta %s com você" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s compartilhou o arquivo %s com você" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Baixar" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Nenhuma visualização disponível para" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "web services sob seu controle" +msgstr "" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 728344416d..534011f879 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rodrigo Tavares , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Não foi possível excluir %s permanentemente" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Não foi possível restaurar %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "realizar operação de restauração" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Erro" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "excluir arquivo permanentemente" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Excluir permanentemente" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nome" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Excluído" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 pasta" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} pastas" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 arquivo" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} arquivos" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Nada aqui. Sua lixeira está vazia!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Restaurar" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Excluir" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Arquivos Apagados" +msgstr "" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index 7274496348..88c6769027 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Rodrigo Tavares , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -24,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Impossível reverter: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "sucesso" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Arquivo %s revertido à versão %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "falha" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Arquivo %s não pôde ser revertido à versão %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Nenhuma versão antiga disponível" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Nenhum caminho especificado" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versões" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Reverta um arquivo a uma versão anterior clicando no botão reverter" +msgstr "" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index b6f5ca1cf8..9e83f6447d 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# dudanogueira , 2012 -# fboaventura , 2013 -# Schopfer , 2012 -# sedir , 2012 -# Rodrigo Tavares , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -24,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Ajuda" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Pessoal" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Ajustes" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Usuários" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplicações" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Download ZIP está desligado." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Arquivos precisam ser baixados um de cada vez." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Voltar para Arquivos" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "não pôde ser determinado" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Aplicação não está habilitada" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Erro de autenticação" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token expirou. Por favor recarregue a página." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Arquivos" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Texto" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Imagens" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Defina um nome de usuário de administrador." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Defina uma senha de administrador." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s insira o nome de usuário do banco de dados." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s insira o nome do banco de dados." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s você não pode usar pontos no nome do banco de dados" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s defina o host do banco de dados." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Nome de usuário e/ou senha PostgreSQL inválido(s)" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Você precisa inserir uma conta existente ou o administrador." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Nome de usuário e/ou senha Oracle inválido(s)" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Nome de usuário e/ou senha MySQL inválido(s)" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Erro no BD: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Comando ofensivo era: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "O usuário MySQL '%s'@'localhost' já existe." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Derrubar este usuário do MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Usuário MySQL '%s'@'%%' já existe" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Derrube este usuário do MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Comando ofensivo era: \"%s\", nome: %s, senha: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nome de usuário e/ou senha MS SQL inválido(s): %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Por favor, confira os guias de instalação." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "segundos atrás" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minuto atrás" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minutos atrás" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 hora atrás" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d horas atrás" +msgstr "" #: template.php:118 msgid "today" -msgstr "hoje" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "ontem" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d dias atrás" +msgstr "" #: template.php:121 msgid "last month" -msgstr "último mês" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d meses atrás" +msgstr "" #: template.php:123 msgid "last year" -msgstr "último ano" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "anos atrás" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s está disponível. Obtenha mais informações" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "atualizado" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "checagens de atualização estão desativadas" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Impossível localizar categoria \"%s\"" +msgstr "" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index a71f4f3624..9a5206177e 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -3,23 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# dudanogueira , 2011 -# fboaventura , 2013 -# FredMaranhao , 2012 -# Guilherme Maluf Balzana , 2012 -# sedir , 2012 -# Rodrigo Tavares , 2013 -# Sandro Venezuela , 2012 -# targinosilveira , 2012 -# Thiago Vicente , 2012 -# thoriumbr , 2012 -# Van Der Fran , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -30,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Não foi possível carregar lista da App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Erro de autenticação" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -43,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Impossível alterar nome de exibição" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Grupo já existe" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Não foi possível adicionar grupo" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Não foi possível habilitar aplicativo." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-mail guardado" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "E-mail inválido" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Não foi possível remover grupo" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Não foi possível remover usuário" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Idioma alterado" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Pedido inválido" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Admins não podem se remover do grupo admin" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Não foi possível adicionar usuário ao grupo %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Não foi possível remover usuário do grupo %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Não foi possível atualizar o app." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Atualizar para {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Desabilitar" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Habilitar" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Por favor, aguarde..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Erro" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Atualizando..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Erro ao atualizar aplicativo" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Atualizado" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Guardando..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "excluído" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "desfazer" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Impossível remover usuário" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupos" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupo Administrativo" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Excluir" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "adicionar grupo" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Forneça um nome de usuário válido" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Erro ao criar usuário" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Forneça uma senha válida" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Português (Brasil)" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Aviso de Segurança" +msgstr "" #: templates/admin.php:18 msgid "" @@ -191,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Seu diretório de dados e seus arquivos estão, provavelmente, acessíveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessível ou que você mova o diretório de dados para fora da raiz do servidor web." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Aviso de Configuração" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Por favor, confira os guias de instalação." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Módulo 'fileinfo' faltando" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type)." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Localização não funcionando" +msgstr "" #: templates/admin.php:63 #, php-format @@ -228,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Este servidor ownCloud não pode configurar a localização do sistema para %s. Isto significa que pode haver problema com alguns caracteres nos nomes de arquivos. Nós recomendamos fortemente que você instale os pacotes requeridos em seu sistema para suportar %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Sem conexão com a internet" +msgstr "" #: templates/admin.php:78 msgid "" @@ -242,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Este servidor ownCloud não tem conexão com a internet. Isto significa que alguns dos recursos como montar armazenamento externo, notificar atualizações ou instalar aplicativos de terceiros não funcionam. Acesso remoto a arquivos e envio de e-mails de notificação podem também não funcionar. Sugerimos que habilite a conexão com a internet neste servidor se quiser usufruir de todos os recursos do ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Execute uma tarefa com cada página carregada" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php está registrado no serviço webcron. Chame a página cron.php na raíz do owncloud a cada minuto por http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Usar serviço de cron do sistema. Chama o arquivo cron.php na pasta owncloud via cronjob do sistema a cada minuto." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Compartilhamento" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Habilitar API de Compartilhamento" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Permitir que aplicativos usem a API de Compartilhamento" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Permitir links" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Permitir que usuários compartilhem itens com o público usando links" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Permitir recompartilhamento" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Permitir que usuários compartilhem com qualquer um" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Permitir que usuários compartilhem somente com usuários em seus grupos" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Segurança" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Forçar HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Força o cliente a conectar-se ao ownCloud por uma conexão criptografada." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Por favor, conecte-se a esta instância do ownCloud via HTTPS para habilitar ou desabilitar 'Forçar SSL'." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Registro" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Nível de registro" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Mais" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Menos" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versão" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -347,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Desenvolvido pela comunidade ownCloud, o código fonte está licenciado sob AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Adicione seu Aplicativo" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Mais Apps" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Selecione um Aplicativo" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Ver página do aplicativo em apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licenciado por " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Atualizar" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Documentação de Usuário" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Documentação de Administrador" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Documentação Online" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Fórum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Rastreador de Bugs" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Suporte Comercial" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Você usou %s do seu espaço de %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Faça com que os apps sincronize seus arquivos" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Mostrar este Assistente de novo" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Senha" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Sua senha foi alterada" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Não é possivel alterar a sua senha" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Senha atual" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nova senha" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Alterar senha" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Nome de Exibição" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-mail" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Seu endereço de e-mail" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Preencha um endereço de e-mail para habilitar a recuperação de senha" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Idioma" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Ajude a traduzir" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Usar este endereço para conectar-se ao seu ownCloud no seu gerenciador de arquivos" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Nome de Login" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Criar" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Armazenamento Padrão" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Ilimitado" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Outro" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Armazenamento" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "alterar nome de exibição" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "definir nova senha" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Padrão" +msgstr "" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 54d37d885b..771e0f9381 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Marcos Rodrigo Ladeia , 2013. -# , 2012. -# Rodrigo Tavares , 2013. -# Tulio Simoes Martins Padilha , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -24,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Falha ao deletar a configuração do servidor" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "A configuração é válida e a conexão foi estabelecida!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "A configuração é válida, mas o Bind falhou. Confira as configurações do servidor e as credenciais." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "A configuração é inválida. Leia o log do ownCloud para mais detalhes." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Remoção falhou" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Tomar parámetros de recente configuração de servidor?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Manter ajustes?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Impossível adicionar a configuração do servidor" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Teste de conexão bem sucedida" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Teste de conexão falhou" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Você quer realmente deletar as atuais Configurações de Servidor?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Confirmar Exclusão" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth são incompatíveis. Você deverá experienciar comportamento inesperado. Por favor, peça ao seu administrador do sistema para desabilitar um deles." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Aviso: O módulo PHP LDAP não está instalado, o backend não funcionará. Por favor, peça ao seu administrador do sistema para instalá-lo." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Configuração de servidor" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Adicionar Configuração de Servidor" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Servidor" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Você pode omitir o protocolo, exceto quando requerer SSL. Então inicie com ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN Base" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Uma base DN por linha" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Você pode especificar DN Base para usuários e grupos na guia Avançada" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN Usuário" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "O DN do cliente usuário com qual a ligação deverá ser feita, ex. uid=agent,dc=example,dc=com. Para acesso anônimo, deixe DN e Senha vazios." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Senha" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Para acesso anônimo, deixe DN e Senha vazios." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtro de Login de Usuário" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Define o filtro pra aplicar ao efetuar uma tentativa de login. %%uuid substitui o nome de usuário na ação de login." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "use %%uid placeholder, ex. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Filtro de Lista de Usuário" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Define filtro a ser aplicado ao obter usuários." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "sem nenhum espaço reservado, ex. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filtro de Grupo" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Define o filtro a aplicar ao obter grupos." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "sem nenhum espaço reservado, ex. \"objectClass=posixGroup\"" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Configurações de Conexão" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Configuração ativa" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Quando não marcada, esta configuração será ignorada." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Porta" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Servidor de Backup (Réplica)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Defina um servidor de backup opcional. Ele deverá ser uma réplica do servidor LDAP/AD principal." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Porta do Backup (Réplica)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Desativar Servidor Principal" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Quando ativado, ownCloud somente se conectará ao servidor de réplica." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Usar TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Não use adicionalmente para conexões LDAPS, pois falhará." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor LDAP sensível à caixa alta (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Desligar validação de certificado SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Se a conexão só funciona com essa opção, importe o certificado SSL do servidor LDAP no seu servidor ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Não recomendado, use somente para testes." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Cache Time-To-Live" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "em segundos. Uma mudança esvaziará o cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Configurações de Diretório" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Campo Nome de Exibição de Usuário" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "O atributo LDAP para usar para gerar nome ownCloud do usuário." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Árvore de Usuário Base" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Um usuário-base DN por linha" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Atributos de Busca de Usuário" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Opcional; um atributo por linha" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Campo Nome de Exibição de Grupo" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "O atributo LDAP para usar para gerar nome ownCloud do grupo." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Árvore de Grupo Base" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Um grupo-base DN por linha" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atributos de Busca de Grupo" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Associação Grupo-Membro" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Atributos Especiais" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Campo de Cota" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Cota Padrão" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "em bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Campo de Email" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Regra para Nome da Pasta Pessoal do Usuário" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Deixe vazio para nome de usuário (padrão). Caso contrário, especifique um atributo LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Teste de Configuração" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Ajuda" +msgstr "" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 64f137d209..d5ec9cd622 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,20 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mouxy , 2012-2013 -# Mouxy , 2013 -# Duarte Velez Grilo , 2013 -# Duarte Velez Grilo , 2012 -# Helder Meneses , 2011, 2012 -# Helder Meneses , 2012-2013 -# Nelson Rosado , 2012 -# rjgpp1994 , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -28,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "O utilizador %s partilhou um ficheiro consigo." +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "O utilizador %s partilhou uma pasta consigo." +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "O utilizador %s partilhou o ficheiro \"%s\" consigo. Está disponível para download aqui: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "O utilizador %s partilhou a pasta \"%s\" consigo. Está disponível para download aqui: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Tipo de categoria não fornecido" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Nenhuma categoria para adicionar?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "A categoria já existe: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Tipo de objecto não fornecido" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "ID %s não fornecido" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Erro a adicionar %s aos favoritos" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Nenhuma categoria seleccionada para apagar" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Erro a remover %s dos favoritos." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Domingo" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Segunda" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Terça" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Quarta" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Quinta" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Sexta" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sábado" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Janeiro" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Fevereiro" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Março" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Abril" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maio" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Junho" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Julho" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Agosto" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Setembro" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Outubro" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Novembro" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Dezembro" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Definições" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "Minutos atrás" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "Há 1 minuto" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minutos atrás" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "Há 1 hora" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "Há {hours} horas atrás" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "hoje" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "ontem" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} dias atrás" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "ultímo mês" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "Há {months} meses atrás" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "meses atrás" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "ano passado" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "anos atrás" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Cancelar" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Escolha" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Sim" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Não" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "O tipo de objecto não foi especificado" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -251,363 +243,363 @@ msgstr "O tipo de objecto não foi especificado" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Erro" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "O nome da aplicação não foi especificado" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "O ficheiro necessário {file} não está instalado!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Partilhado" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Partilhar" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Erro ao partilhar" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Erro ao deixar de partilhar" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Erro ao mudar permissões" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Partilhado consigo e com o grupo {group} por {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Partilhado consigo por {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Partilhar com" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Partilhar com link" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Proteger com palavra-passe" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Palavra chave" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Enviar o link por e-mail" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Enviar" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Especificar data de expiração" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Data de expiração" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Partilhar via email:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Não foi encontrado ninguém" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Não é permitido partilhar de novo" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Partilhado em {item} com {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Deixar de partilhar" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "pode editar" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "Controlo de acesso" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "criar" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "actualizar" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "apagar" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "partilhar" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Protegido com palavra-passe" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Erro ao retirar a data de expiração" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Erro ao aplicar a data de expiração" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "A Enviar..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "E-mail enviado" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "A actualização falhou. Por favor reporte este incidente seguindo este link ownCloud community." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Reposição da password ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Use o seguinte endereço para repor a sua password: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Vai receber um endereço para repor a sua password" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "E-mail de reinicialização enviado." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "O pedido falhou!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Utilizador" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Pedir reposição" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "A sua password foi reposta" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Para a página de entrada" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nova password" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Repor password" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Pessoal" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Utilizadores" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplicações" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Ajuda" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acesso interdito" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud nao encontrada" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Editar categorias" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Adicionar" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Aviso de Segurança" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "A sua versão do PHP é vulnerável ao ataque Byte Null (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Por favor atualize a sua versão PHP instalada para usar o ownCloud com segurança." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Não existe nenhum gerador seguro de números aleatórios, por favor, active a extensão OpenSSL no PHP." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sem nenhum gerador seguro de números aleatórios, uma pessoa mal intencionada pode prever a sua password, reiniciar as seguranças adicionais e tomar conta da sua conta. " +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "A pasta de dados do ownCloud e os respectivos ficheiros, estarão provavelmente acessíveis a partir da internet, pois o ficheiros .htaccess não funciona." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Para obter informações de como configurar correctamente o servidor, veja em: documentation." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Criar uma conta administrativa" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avançado" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Pasta de dados" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configure a base de dados" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "vai ser usada" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Utilizador da base de dados" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Password da base de dados" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Nome da base de dados" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Tablespace da base de dados" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Anfitrião da base de dados" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Acabar instalação" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "serviços web sob o seu controlo" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Sair" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Login automático rejeitado!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sido comprometida!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Esqueceu-se da sua password?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "lembrar" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Entrar" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Contas de acesso alternativas" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "anterior" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "seguinte" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "A actualizar o ownCloud para a versão %s, esta operação pode demorar." +msgstr "" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index c5ad5a546e..8d98c77937 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -3,20 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mouxy , 2012-2013 -# Mouxy , 2013 -# Duarte Velez Grilo , 2013 -# Duarte Velez Grilo , 2012 -# rlameiro , 2012 -# Helder Meneses , 2012-2013 -# Miguel Sousa , 2013 -# rjgpp1994 , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -28,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Não foi possível move o ficheiro %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Não foi possível renomear o ficheiro" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Sem erro, ficheiro enviado com sucesso" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "O ficheiro enviado só foi enviado parcialmente" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Não foi enviado nenhum ficheiro" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Falta uma pasta temporária" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Falhou a escrita no disco" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Não há espaço suficiente em disco" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Directório Inválido" +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Ficheiros" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Partilhar" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Eliminar permanentemente" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Apagar" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Renomear" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Pendente" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "O nome {new_name} já existe" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "substituir" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "sugira um nome" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "cancelar" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "substituido {new_name} por {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "desfazer" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "Executar a tarefa de apagar" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "A enviar 1 ficheiro" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "A enviar os ficheiros" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' não é um nome de ficheiro válido!" +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "O nome do ficheiro não pode estar vazio." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "O seu armazenamento está cheio, os ficheiros não podem ser sincronizados." +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Espaço em disco insuficiente!" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Envio cancelado." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "O URL não pode estar vazio." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Erro" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nome" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Tamanho" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modificado" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 pasta" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} pastas" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 ficheiro" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} ficheiros" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Enviar" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Manuseamento de ficheiros" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Tamanho máximo de envio" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max. possivel: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Necessário para descarregamento múltiplo de ficheiros e pastas" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Permitir descarregar em ficheiro ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 é ilimitado" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Tamanho máximo para ficheiros ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Guardar" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Novo" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Ficheiro de texto" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Pasta" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Da ligação" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Ficheiros eliminados" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Cancelar envio" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Não tem permissões de escrita aqui." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Vazio. Envie alguma coisa!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Transferir" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Deixar de partilhar" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Envio muito grande" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Os ficheiros que está a tentar enviar excedem o tamanho máximo de envio permitido neste servidor." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Os ficheiros estão a ser analisados, por favor aguarde." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Análise actual" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Atualizar cache do sistema de ficheiros..." +msgstr "" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 5b7f52b371..31efb7ea64 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daniel Pinto , 2013. -# Duarte Velez Grilo , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Encriptação" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "A encriptação de ficheiros está ligada" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Os seguintes ficheiros não serão encriptados:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Excluir da encriptação os seguintes tipos de ficheiro:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Nenhum" +msgstr "" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 7faa302134..969a698076 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mouxy , 2012 -# Duarte Velez Grilo , 2012 -# Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -22,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Acesso autorizado" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Erro ao configurar o armazenamento do Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Conceder acesso" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Erro ao configurar o armazenamento do Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Aviso: O suporte FTP no PHP não está activate ou instalado. Não é possível montar as partilhas FTP. Peça ao seu administrador para instalar." +msgstr "" #: lib/config.php:437 msgid "" @@ -62,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Armazenamento Externo" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Nome da pasta" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Armazenamento Externo" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Configuração" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opções" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Aplicável" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Adicionar armazenamento" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Não definido" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Todos os utilizadores" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupos" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Utilizadores" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Eliminar" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Activar Armazenamento Externo para o Utilizador" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Permitir que os utilizadores montem o seu próprio armazenamento externo" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Certificados SSL de raiz" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importar Certificado Root" +msgstr "" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 913b52dd57..4923cd7854 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Duarte Velez Grilo , 2012. -# Helder Meneses , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Password" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Submeter" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s partilhou a pasta %s consigo" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s partilhou o ficheiro %s consigo" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Transferir" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Não há pré-visualização para" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "serviços web sob o seu controlo" +msgstr "" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 187d7ecf91..bcdf8e8207 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daniel Pinto , 2013. -# Helder Meneses , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Não foi possível eliminar %s de forma permanente" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Não foi possível restaurar %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "executar a operação de restauro" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Erro" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "Eliminar permanentemente o(s) ficheiro(s)" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Eliminar permanentemente" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nome" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Apagado" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 pasta" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} pastas" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 ficheiro" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} ficheiros" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Não hà ficheiros. O lixo está vazio!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Restaurar" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Apagar" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Ficheiros Apagados" +msgstr "" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 102a1060df..393d7863be 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daniel Pinto , 2013. -# Duarte Velez Grilo , 2012. -# Helder Meneses , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -23,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Não foi possível reverter: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "Sucesso" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "O ficheiro %s foi revertido para a versão %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "Falha" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Não foi possível reverter o ficheiro %s para a versão %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Não existem versões mais antigas" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Nenhum caminho especificado" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versões" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Reverter um ficheiro para uma versão anterior clicando no seu botão reverter." +msgstr "" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 0091021228..12aca205d0 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mouxy , 2012-2013 -# Mouxy , 2013 -# Duarte Velez Grilo , 2012 -# Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -23,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Ajuda" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Pessoal" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Configurações" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Utilizadores" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplicações" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Descarregamento em ZIP está desligado." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Os ficheiros precisam de ser descarregados um por um." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Voltar a Ficheiros" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "Não foi possível determinar" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "A aplicação não está activada" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Erro na autenticação" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "O token expirou. Por favor recarregue a página." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Ficheiros" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Texto" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Imagens" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Definir um nome de utilizador de administrador" +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Definiar uma password de administrador" +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s introduza o nome de utilizador da base de dados" +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s introduza o nome da base de dados" +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s não é permitido utilizar pontos (.) no nome da base de dados" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s defina o servidor da base de dados (geralmente localhost)" +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Nome de utilizador/password do PostgreSQL inválido" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Precisa de introduzir uma conta existente ou de administrador" +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Nome de utilizador/password do Oracle inválida" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Nome de utilizador/password do MySQL inválida" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Erro na BD: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "O comando gerador de erro foi: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "O utilizador '%s'@'localhost' do MySQL já existe." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Eliminar este utilizador do MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "O utilizador '%s'@'%%' do MySQL já existe" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Eliminar este utilizador do MySQL" +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "O comando gerador de erro foi: \"%s\", nome: %s, password: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Nome de utilizador/password do MySQL é inválido: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Por favor verifique installation guides." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "há alguns segundos" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "há 1 minuto" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "há %d minutos" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "Há 1 horas" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "Há %d horas" +msgstr "" #: template.php:118 msgid "today" -msgstr "hoje" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "ontem" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "há %d dias" +msgstr "" #: template.php:121 msgid "last month" -msgstr "mês passado" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "Há %d meses atrás" +msgstr "" #: template.php:123 msgid "last year" -msgstr "ano passado" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "há anos" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s está disponível. Obtenha mais informação" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "actualizado" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "a verificação de actualizações está desligada" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Não foi encontrado a categoria \"%s\"" +msgstr "" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 6465190461..cf86cc4d37 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -3,20 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mouxy , 2012 -# Mouxy , 2013 -# Duarte Velez Grilo , 2013 -# Duarte Velez Grilo , 2012-2013 -# rlameiro , 2012 -# Helder Meneses , 2012-2013 -# Miguel Sousa , 2013 -# rjgpp1994 , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -27,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Incapaz de carregar a lista da App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Erro de autenticação" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -40,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Não foi possível alterar o nome" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "O grupo já existe" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Impossível acrescentar o grupo" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Não foi possível activar a app." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email guardado" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Email inválido" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Impossível apagar grupo" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Impossível apagar utilizador" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Idioma alterado" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Pedido inválido" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Os administradores não se podem remover a eles mesmos do grupo admin." +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Impossível acrescentar utilizador ao grupo %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Impossível apagar utilizador do grupo %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Não foi possível actualizar a aplicação." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Actualizar para a versão {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Desactivar" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Activar" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Por favor aguarde..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Erro" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "A Actualizar..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Erro enquanto actualizava a aplicação" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Actualizado" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "A guardar..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "apagado" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "desfazer" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Não foi possível remover o utilizador" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupos" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupo Administrador" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Apagar" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "Adicionar grupo" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Um nome de utilizador válido deve ser fornecido" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Erro a criar utilizador" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Uma password válida deve ser fornecida" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Aviso de Segurança" +msgstr "" #: templates/admin.php:18 msgid "" @@ -188,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Aviso de setup" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Por favor verifique installation guides." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Falta o módulo 'fileinfo'" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Internacionalização não está a funcionar" +msgstr "" #: templates/admin.php:63 #, php-format @@ -225,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "A ligação à internet não está a funcionar" +msgstr "" #: templates/admin.php:78 msgid "" @@ -239,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Este servidor ownCloud não tem uma ligação de internet funcional. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretende obter todas as funcionalidades do ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Executar uma tarefa com cada página carregada" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php está registado como um serviço webcron. Aceda a pagina cron.php que se encontra na raiz do ownCloud uma vez por minuto utilizando o seu browser." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Usar o serviço cron do sistema. Aceda a pagina cron.php que se encontra na raiz do ownCloud uma vez por minuto utilizando o seu browser." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Partilha" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Activar a API de partilha" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Permitir que os utilizadores usem a API de partilha" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Permitir links" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Permitir que os utilizadores partilhem itens com o público utilizando um link." +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Permitir repartilha" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Permitir que os utilizadores partilhem itens partilhados com eles" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Permitir que os utilizadores partilhem com todos" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Segurança" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Forçar HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forçar clientes a ligar através de uma ligação encriptada" +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Por favor ligue-se ao ownCloud através de uma ligação HTTPS para ligar/desligar o forçar da ligação por SSL" +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Registo" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Nível do registo" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Mais" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Menos" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versão" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -344,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Desenvolvido pela comunidade ownCloud, ocódigo fonte está licenciado sob a AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Adicione a sua aplicação" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Mais Aplicações" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Selecione uma aplicação" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Ver a página da aplicação em apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licenciado por " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Actualizar" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Documentação de Utilizador" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Documentação de administrador." +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Documentação Online" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Fórum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Suporte Comercial" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Usou %s do disponivel %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Obtenha as aplicações para sincronizar os seus ficheiros" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Mostrar novamente Wizard de Arranque Inicial" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Palavra-chave" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "A sua palavra-passe foi alterada" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Não foi possivel alterar a sua palavra-chave" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Palavra-chave actual" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nova palavra-chave" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Alterar palavra-chave" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Nome público" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "endereço de email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "O seu endereço de email" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Idioma" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Ajude a traduzir" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Nome de utilizador" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Criar" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Armazenamento Padrão" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Ilimitado" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Outro" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Armazenamento" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "modificar nome exibido" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "definir nova palavra-passe" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Padrão" +msgstr "" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index a5106e4055..03d202db90 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012-2013. -# Daniel Pinto , 2013. -# Duarte Velez Grilo , 2012. -# Helder Meneses , 2012-2013. -# Nelson Rosado , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -24,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Erro ao eliminar as configurações do servidor" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "A configuração está correcta e foi possível estabelecer a ligação!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "A configuração está correcta, mas não foi possível estabelecer o \"laço\", por favor, verifique as configurações do servidor e as credenciais." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "A configuração é inválida. Por favor, veja o log do ownCloud para mais detalhes." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Erro ao apagar" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Assumir as configurações da configuração do servidor mais recente?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Manter as definições?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Não foi possível adicionar as configurações do servidor." +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Teste de conecção passado com sucesso." +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Erro no teste de conecção." +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Deseja realmente apagar as configurações de servidor actuais?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Confirmar a operação de apagar" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Aviso: A aplicação user_ldap e user_webdavauth são incompativeis. A aplicação pode tornar-se instável. Por favor, peça ao seu administrador para desactivar uma das aplicações." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Aviso: O módulo PHP LDAP não está instalado, logo não irá funcionar. Por favor peça ao administrador para o instalar." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Configurações do servidor" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Adicionar configurações do servidor" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Anfitrião" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN base" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Uma base DN por linho" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Pode especificar o ND Base para utilizadores e grupos no separador Avançado" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN do utilizador" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "O DN to cliente " +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Palavra-passe" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Para acesso anónimo, deixe DN e a Palavra-passe vazios." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtro de login de utilizador" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Define o filtro a aplicar, para aquando de uma tentativa de login. %%uid substitui o nome de utilizador utilizado." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "Use a variável %%uid , exemplo: \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Utilizar filtro" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Defina o filtro a aplicar, ao recuperar utilizadores." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "Sem variável. Exemplo: \"objectClass=pessoa\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filtrar por grupo" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Defina o filtro a aplicar, ao recuperar grupos." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "Sem nenhuma variável. Exemplo: \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Definições de ligação" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Configuração activa" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Se não estiver marcada, esta definição não será tida em conta." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Porto" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Servidor de Backup (Réplica)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Forneça um servidor (anfitrião) de backup. Deve ser uma réplica do servidor principal de LDAP/AD " +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Porta do servidor de backup (Replica)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Desactivar servidor principal" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Se estiver ligado, o ownCloud vai somente ligar-se a este servidor de réplicas." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Usar TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Não utilize para adicionar ligações LDAP, irá falhar!" +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Servidor LDAP (Windows) não sensível a maiúsculas." +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Desligar a validação de certificado SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Se a ligação apenas funcionar com está opção, importe o certificado SSL do servidor LDAP para o seu servidor do ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Não recomendado, utilizado apenas para testes!" +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Cache do tempo de vida dos objetos no servidor" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "em segundos. Uma alteração esvazia a cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Definições de directorias" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Mostrador do nome de utilizador." +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atributo LDAP para gerar o nome de utilizador do ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Base da árvore de utilizadores." +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Uma base de utilizador DN por linha" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Utilizar atributos de pesquisa" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Opcional; Um atributo por linha" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Mostrador do nome do grupo." +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atributo LDAP para gerar o nome do grupo do ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Base da árvore de grupos." +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Uma base de grupo DN por linha" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atributos de pesquisa de grupo" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Associar utilizador ao grupo." +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Atributos especiais" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Quota" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Quota padrão" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "em bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Campo de email" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Regra da pasta inicial do utilizador" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Testar a configuração" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Ajuda" +msgstr "" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index e85f37b29d..3cc1b3f7e7 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -3,20 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu , 2011, 2012 -# Dimon Pockemon <>, 2012 -# Dimon Pockemon <>, 2013 -# Eugen Mihalache , 2012 -# g.ciprian , 2012 -# laurentiucristescu , 2012 -# ripkid666 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 14:30+0000\n" -"Last-Translator: ripkid666 \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Utilizatorul %s a partajat un fișier cu tine" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Utilizatorul %s a partajat un dosar cu tine" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Utilizatorul %s a partajat fișierul \"%s\" cu tine. Îl poți descărca de aici: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Utilizatorul %s a partajat dosarul \"%s\" cu tine. Îl poți descărca de aici: %s " +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Tipul de categorie nu este prevazut" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Nici o categorie de adăugat?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Această categorie deja există: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Tipul obiectului nu este prevazut" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "ID-ul %s nu a fost introdus" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Eroare la adăugarea %s la favorite" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Nici o categorie selectată pentru ștergere." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Eroare la ștergerea %s din favorite" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Duminică" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Luni" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Marți" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Miercuri" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Joi" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Vineri" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sâmbătă" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Ianuarie" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februarie" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Martie" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Aprilie" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mai" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Iunie" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Iulie" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "August" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Septembrie" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Octombrie" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Noiembrie" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Decembrie" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Configurări" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "secunde în urmă" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minut în urmă" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minute in urma" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "Acum o ora" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} ore în urmă" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "astăzi" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "ieri" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} zile in urma" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "ultima lună" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} luni în urmă" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "luni în urmă" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "ultimul an" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "ani în urmă" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Anulare" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Alege" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Da" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nu" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Tipul obiectului nu a fost specificat" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -250,363 +243,363 @@ msgstr "Tipul obiectului nu a fost specificat" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Eroare" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Numele aplicației nu a fost specificat" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Fișierul obligatoriu {file} nu este instalat!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Partajat" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Partajează" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Eroare la partajare" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Eroare la anularea partajării" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Eroare la modificarea permisiunilor" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Distribuie cu tine si grupul {group} de {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Distribuie cu tine de {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Partajat cu" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Partajare cu legătură" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Protejare cu parolă" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Parola" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Expediază legătura prin poșta electronică" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Expediază" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Specifică data expirării" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Data expirării" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Distribuie prin email:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Nici o persoană găsită" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Repartajarea nu este permisă" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Distribuie in {item} si {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Anulare partajare" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "poate edita" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "control acces" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "creare" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "actualizare" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "ștergere" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "partajare" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Protejare cu parolă" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Eroare la anularea datei de expirare" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Eroare la specificarea datei de expirare" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Se expediază..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Mesajul a fost expediat" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Modernizarea a eșuat! Te rugam sa raportezi problema aici.." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Modernizare reusita! Vei fii redirectionat!" +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Resetarea parolei ownCloud " +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Folosește următorul link pentru a reseta parola: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Vei primi un mesaj prin care vei putea reseta parola via email" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Resetarea emailu-lui trimisa." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Solicitarea nu a reusit" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Utilizator" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Cerere trimisă" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Parola a fost resetată" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Spre pagina de autentificare" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Noua parolă" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Resetează parola" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personal" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Utilizatori" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplicații" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administrator" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Ajutor" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acces interzis" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Nu s-a găsit" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Editează categoriile" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Adaugă" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Avertisment de securitate" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Versiunea dvs. PHP este vulnerabil la acest atac un octet null (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Vă rugăm să actualizați instalarea dvs. PHP pentru a utiliza ownCloud in siguranță." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL" +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau" +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Directorul de date și fișiere sunt, probabil, accesibile de pe Internet, deoarece .htaccess nu funcționează." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Pentru informatii despre configurarea corecta a serverului accesati pagina Documentare." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Crează un cont de administrator" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avansat" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Director date" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Configurează baza de date" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "vor fi folosite" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Utilizatorul bazei de date" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Parola bazei de date" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Numele bazei de date" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Tabela de spațiu a bazei de date" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Bază date" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Finalizează instalarea" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "servicii web controlate de tine" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Ieșire" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Logare automata respinsa" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Daca nu schimbi parola cand de curand , contul tau poate fi conpromis" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Te rog schimba parola pentru ca, contul tau sa fie securizat din nou." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Ai uitat parola?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "amintește" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Autentificare" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Conectări alternative" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "precedentul" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "următorul" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Actualizăm ownCloud la versiunea %s, aceasta poate dura câteva momente." +msgstr "" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 1732239883..a55bfc76d3 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu , 2011-2013 -# Dimon Pockemon <>, 2012 -# Dimon Pockemon <>, 2013 -# Eugen Mihalache , 2012 -# g.ciprian , 2012-2013 -# laurentiucristescu , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -26,51 +20,51 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Nu se poate de mutat %s - Fișier cu acest nume deja există" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Nu s-a putut muta %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Nu s-a putut redenumi fișierul" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Nicio eroare, fișierul a fost încărcat cu succes" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: " +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Fișierul a fost încărcat doar parțial" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Niciun fișier încărcat" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Lipsește un dosar temporar" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Eroare la scriere pe disc" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -78,15 +72,15 @@ msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Director invalid." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Fișiere" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Partajează" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -94,39 +88,39 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Șterge" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Redenumire" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "În așteptare" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} deja exista" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "înlocuire" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "sugerează nume" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "anulare" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} inlocuit cu {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "Anulează ultima acțiune" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -134,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "un fișier se încarcă" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -142,17 +136,17 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' este un nume invalid de fișier." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Numele fișierului nu poate rămâne gol." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -166,116 +160,116 @@ msgstr "" msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă fișierele sunt mari." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes." +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Nu este suficient spațiu disponibil" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Încărcare anulată." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Adresa URL nu poate fi goală." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Eroare" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Nume" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Dimensiune" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modificat" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 folder" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} foldare" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 fisier" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} fisiere" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Încarcă" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Manipulare fișiere" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Dimensiune maximă admisă la încărcare" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max. posibil:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Necesar pentru descărcarea mai multor fișiere și a dosarelor" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Activează descărcare fișiere compresate" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 e nelimitat" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Dimensiunea maximă de intrare pentru fișiere compresate" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Salvare" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nou" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Fișier text" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Dosar" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "de la adresa" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -283,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Anulează încărcarea" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -291,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Nimic aici. Încarcă ceva!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Descarcă" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Anulează partajarea" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Fișierul încărcat este prea mare" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Fișierele sunt scanate, te rog așteptă." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "În curs de scanare" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index a4aa0e05df..aa2223403b 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dumitru Ursu <>, 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -21,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Încriptare" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -37,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Niciuna" +msgstr "" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 88ba2d8cfd..96e00c912f 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -3,16 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dimon Pockemon <>, 2013 -# g.ciprian , 2012 -# ripkid666 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 14:30+0000\n" -"Last-Translator: ripkid666 \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Acces permis" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Eroare la configurarea mediului de stocare Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Permite accesul" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Prezintă te rog o cheie de Dropbox validă și parola" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Eroare la configurarea mediului de stocare Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Atenție: suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Atentie: Suportul Curl nu este pornit / instalat in configuratia PHP! Montarea ownCloud / WebDAV / GoogleDrive nu este posibila! Intrebati administratorul sistemului despre aceasta problema!" +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Stocare externă" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Denumire director" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Stocare externă" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Configurație" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Opțiuni" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Aplicabil" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Adauga stocare" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Niciunul" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Toți utilizatorii" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupuri" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Utilizatori" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Șterge" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Permite stocare externă pentru utilizatori" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Permite utilizatorilor să monteze stocare externă proprie" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Certificate SSL root" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importă certificat root" +msgstr "" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 6dfb5310d7..e27218b601 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Parolă" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Trimite" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s a partajat directorul %s cu tine" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s a partajat fișierul %s cu tine" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Descarcă" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Nici o previzualizare disponibilă pentru " +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "servicii web controlate de tine" +msgstr "" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 1c2d7260a9..a87a2328ec 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Eroare" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Nume" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 folder" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} foldare" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 fisier" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} fisiere" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Șterge" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 44a5bd45f2..030a6b7d11 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -3,15 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# g.ciprian , 2012 -# ripkid666 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 13:50+0000\n" -"Last-Translator: ripkid666 \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Nu a putut reveni: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "success" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Fisierul %s a revenit la versiunea %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "eșec" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Fisierele %s nu au putut reveni la versiunea %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Versiunile vechi nu sunt disponibile" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Nici un dosar specificat" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versiuni" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Readuceti un fișier la o versiune anterioară, făcând clic pe butonul revenire" +msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 9508b63732..545707d1a2 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dimon Pockemon <>, 2013 -# g.ciprian , 2012 -# laurentiucristescu , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -22,71 +19,71 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Ajutor" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personal" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Setări" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Utilizatori" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplicații" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Descărcarea ZIP este dezactivată." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Fișierele trebuie descărcate unul câte unul." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Înapoi la fișiere" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "nu poate fi determinat" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Aplicația nu este activată" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Eroare la autentificare" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token expirat. Te rugăm să reîncarci pagina." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Fișiere" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Text" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Imagini" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -116,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "secunde în urmă" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minut în urmă" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minute în urmă" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "Acum o ora" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d ore in urma" +msgstr "" #: template.php:118 msgid "today" -msgstr "astăzi" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "ieri" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d zile în urmă" +msgstr "" #: template.php:121 msgid "last month" -msgstr "ultima lună" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d luni in urma" +msgstr "" #: template.php:123 msgid "last year" -msgstr "ultimul an" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "ani în urmă" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s este disponibil. Vezi mai multe informații" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "la zi" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "verificarea după actualizări este dezactivată" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Cloud nu a gasit categoria \"%s\"" +msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 4108879435..4ac06aa874 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu , 2011, 2012 -# Dimon Pockemon <>, 2012 -# Dimon Pockemon <>, 2013 -# Eugen Mihalache , 2012 -# g.ciprian , 2012-2013 -# Robin Appelman , 2012 -# iuranemo , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -26,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Imposibil de încărcat lista din App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Eroare de autentificare" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -43,53 +36,53 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Grupul există deja" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Nu s-a putut adăuga grupul" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Nu s-a putut activa aplicația." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-mail salvat" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "E-mail nevalid" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Nu s-a putut șterge grupul" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Nu s-a putut șterge utilizatorul" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Limba a fost schimbată" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Cerere eronată" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administratorii nu se pot șterge singuri din grupul admin" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Nu s-a putut adăuga utilizatorul la grupul %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Nu s-a putut elimina utilizatorul din grupul %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -101,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Dezactivați" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Activați" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -113,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Eroare" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -129,15 +122,15 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Salvez..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "șters" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "Anulează ultima acțiune" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -146,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupuri" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupul Admin " +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Șterge" +msgstr "" #: js/users.js:262 msgid "add group" @@ -174,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "_language_name_" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Avertisment de securitate" +msgstr "" #: templates/admin.php:18 msgid "" @@ -187,7 +180,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" @@ -325,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Mai mult" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Mai puțin" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Versiunea" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -343,60 +336,60 @@ msgid "" "licensed under the AGPL." -msgstr "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Adaugă aplicația ta" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Mai multe aplicații" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Selectează o aplicație" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Vizualizează pagina applicației pe apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licențiat " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Actualizare" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Documentație utilizator" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Documentație administrator" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Documentație online" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Urmărire bug-uri" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Suport comercial" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Ați utilizat %s din %s disponibile" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" @@ -408,27 +401,27 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Parolă" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Parola a fost modificată" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Imposibil de-ați schimbat parola" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Parola curentă" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Noua parolă" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Schimbă parola" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -436,31 +429,31 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Adresa ta de email" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Completează o adresă de mail pentru a-ți putea recupera parola" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Limba" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Ajută la traducere" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Folosește această adresă pentru a conecta ownCloud cu managerul de fișiere" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" @@ -468,23 +461,23 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Crează" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Stocare implicită" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Nelimitată" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Altele" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Stocare" +msgstr "" #: templates/users.php:93 msgid "change display name" @@ -496,4 +489,4 @@ msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Implicită" +msgstr "" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 7d04a5cc4f..322a7ab3a5 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dumitru Ursu <>, 2012-2013. -# , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -42,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Ștergerea a eșuat" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -77,13 +74,13 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Atentie: Apps user_ldap si user_webdavauth sunt incompatibile. Este posibil sa experimentati un comportament neasteptat. Vă rugăm să întrebați administratorul de sistem pentru a dezactiva una dintre ele." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Atenție Modulul PHP LDAP nu este instalat, infrastructura nu va funcționa. Contactează administratorul sistemului pentru al instala." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" @@ -95,83 +92,83 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Gazdă" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Puteți omite protocolul, decât dacă folosiți SSL. Atunci se începe cu ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN de bază" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Un Base DN pe linie" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Puteți să specificați DN de bază pentru utilizatori și grupuri în fila Avansat" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN al utilizatorului" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN-ul clientului utilizator cu care se va efectua conectarea, d.e. uid=agent,dc=example,dc=com. Pentru acces anonim, lăsăți DN și Parolă libere." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Parolă" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Pentru acces anonim, lăsați DN și Parolă libere." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filtrare după Nume Utilizator" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Definește fitrele care trebuie aplicate, când se încearcă conectarea. %%uid înlocuiește numele utilizatorului în procesul de conectare." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "folosiți substituentul %%uid , d.e. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Filtrarea după lista utilizatorilor" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definește filtrele care trebui aplicate, când se peiau utilzatorii." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "fără substituenți, d.e. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Fitrare Grup" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definește filtrele care se aplică, când se preiau grupurile." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "fără substituenți, d.e. \"objectClass=posixGroup\"" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" @@ -187,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Portul" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -213,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Utilizează TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -221,21 +218,21 @@ msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Server LDAP insensibil la majuscule (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Oprește validarea certificatelor SSL " +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Dacă conexiunea lucrează doar cu această opțiune, importează certificatul SSL al serverului LDAP în serverul ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Nu este recomandat, a se utiliza doar pentru testare." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -243,7 +240,7 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "în secunde. O schimbare curăță memoria tampon." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" @@ -251,19 +248,19 @@ msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Câmpul cu numele vizibil al utilizatorului" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atributul LDAP folosit pentru a genera numele de utilizator din ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Arborele de bază al Utilizatorilor" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Un User Base DN pe linie" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" @@ -275,19 +272,19 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Câmpul cu numele grupului" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atributul LDAP folosit pentru a genera numele grupurilor din ownCloud" +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Arborele de bază al Grupurilor" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Un Group Base DN pe linie" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" @@ -295,7 +292,7 @@ msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Asocierea Grup-Membru" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -311,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "în octeți" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -325,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Lăsați gol pentru numele de utilizator (implicit). În caz contrar, specificați un atribut LDAP / AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -333,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Ajutor" +msgstr "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 4aaffc396f..67f827fa9d 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -3,24 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012 -# jekader , 2011, 2012 -# k0ldbl00d , 2012 -# Mihail Vasiliev , 2012 -# sam002 , 2012 -# m4rkell , 2013 -# adol , 2013 -# skoptev , 2012 -# tonymc , 2011 -# Victor Bravo <>, 2012 -# VicDeo , 2012 -# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -32,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Пользователь %s поделился с вами файлом" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Пользователь %s открыл вам доступ к папке" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Пользователь %s открыл вам доступ к файлу \"%s\". Он доступен для загрузки здесь: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Пользователь %s открыл вам доступ к папке \"%s\". Она доступна для загрузки здесь: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Тип категории не предоставлен" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Нет категорий для добавления?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Эта категория уже существует: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Тип объекта не предоставлен" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "ID %s не предоставлен" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Ошибка добавления %s в избранное" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Нет категорий для удаления." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Ошибка удаления %s из избранного" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Воскресенье" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Понедельник" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Вторник" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Среда" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Четверг" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Пятница" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Суббота" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Январь" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Февраль" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Март" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Апрель" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Май" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Июнь" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Июль" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Август" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Сентябрь" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Октябрь" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Ноябрь" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Декабрь" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Настройки" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "несколько секунд назад" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 минуту назад" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} минут назад" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "час назад" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} часов назад" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "сегодня" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "вчера" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} дней назад" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "в прошлом месяце" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} месяцев назад" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "несколько месяцев назад" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "в прошлом году" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "несколько лет назад" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ок" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Отмена" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Выбрать" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Да" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Нет" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Тип объекта не указан" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -255,363 +243,363 @@ msgstr "Тип объекта не указан" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Ошибка" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Имя приложения не указано" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Необходимый файл {file} не установлен!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Общие" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Открыть доступ" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Ошибка при открытии доступа" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Ошибка при закрытии доступа" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Ошибка при смене разрешений" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "{owner} открыл доступ для Вас и группы {group} " +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner} открыл доступ для Вас" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Поделиться с" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Поделиться с ссылкой" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Защитить паролем" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Пароль" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Почтовая ссылка на персону" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Отправить" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Установить срок доступа" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Дата окончания" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Поделится через электронную почту:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Ни один человек не найден" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Общий доступ не разрешен" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Общий доступ к {item} с {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Закрыть общий доступ" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "может редактировать" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "контроль доступа" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "создать" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "обновить" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "удалить" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "открыть доступ" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Защищено паролем" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Ошибка при отмене срока доступа" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Ошибка при установке срока доступа" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Отправляется ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Письмо отправлено" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "При обновлении произошла ошибка. Пожалуйста сообщите об этом в ownCloud сообщество." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud..." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Сброс пароля " +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Используйте следующую ссылку чтобы сбросить пароль: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "На ваш адрес Email выслана ссылка для сброса пароля." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Отправка письма с информацией для сброса." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Запрос не удался!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Имя пользователя" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Запросить сброс" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Ваш пароль был сброшен" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "На страницу авторизации" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Новый пароль" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Сбросить пароль" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Личное" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Пользователи" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Приложения" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Администратор" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Помощь" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Доступ запрещён" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Облако не найдено" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Редактировать категории" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Добавить" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Предупреждение безопасности" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Пожалуйста обновите Ваш PHP чтобы использовать ownCloud безопасно." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Нет доступного защищенного генератора случайных чисел, пожалуйста, включите расширение PHP OpenSSL." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Без защищенного генератора случайных чисел злоумышленник может предугадать токены сброса пароля и завладеть Вашей учетной записью." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Ваша папка с данными и файлы возможно доступны из интернета потому что файл .htaccess не работает." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Для информации как правильно настроить Ваш сервер, пожалйста загляните в документацию." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Создать учётную запись администратора" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Дополнительно" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Директория с данными" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Настройка базы данных" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "будет использовано" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Имя пользователя для базы данных" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Пароль для базы данных" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Название базы данных" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Табличое пространство базы данных" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Хост базы данных" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Завершить установку" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Сетевые службы под твоим контролем" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Выйти" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Автоматический вход в систему отключен!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Если Вы недавно не меняли свой пароль, то Ваша учетная запись может быть скомпрометирована!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Пожалуйста, смените пароль, чтобы обезопасить свою учетную запись." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Забыли пароль?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "запомнить" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Войти" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Альтернативные имена пользователя" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "пред" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "след" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Производится обновление ownCloud до версии %s. Это может занять некоторое время." +msgstr "" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 2e63fcccba..63989799cb 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -3,28 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012 -# jekader , 2012 -# Yaroslav Petrov , 2012 -# mPolr , 2012 -# Nick Remeslennikov , 2012 -# sam002 , 2012 -# eurekafag , 2013 -# m4rkell , 2013 -# adol , 2013 -# skoptev , 2012 -# tonymc , 2011 -# unixoid , 2013 -# Victor Bravo <>, 2012 -# VicDeo , 2012 -# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" -"Last-Translator: eurekafag \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Невозможно переместить %s - файл с таким именем уже существует" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Невозможно переместить %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Невозможно переименовать файл" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Файл не был загружен. Неизвестная ошибка" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Файл успешно загружен" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Файл превышает размер установленный upload_max_filesize в php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Файл был загружен не полностью" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Файл не был загружен" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Невозможно найти временную папку" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Ошибка записи на диск" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Недостаточно доступного места в хранилище" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Неправильный каталог." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Файлы" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Открыть доступ" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Удалено навсегда" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Удалить" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Переименовать" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Ожидание" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} уже существует" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "заменить" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "предложить название" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "отмена" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "заменено {new_name} на {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "отмена" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "выполняется операция удаления" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "загружается 1 файл" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "файлы загружаются" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' - неправильное имя файла." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Имя файла не может быть пустым." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ваше дисковое пространство полностью заполнено, произведите очистку перед загрузкой новых файлов." +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Ваше хранилище почти заполнено ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Загрузка началась. Это может потребовать много времени, если файл большого размера." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Не удается загрузить файл размером 0 байт в каталог" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Недостаточно свободного места" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Загрузка отменена." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Ссылка не может быть пустой." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Ошибка" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Название" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Размер" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Изменён" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 папка" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} папок" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 файл" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} файлов" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Загрузить" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Управление файлами" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Максимальный размер загружаемого файла" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "макс. возможно: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Требуется для скачивания нескольких файлов и папок" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Включить ZIP-скачивание" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 - без ограничений" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Максимальный исходный размер для ZIP файлов" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Сохранить" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Новый" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Текстовый файл" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Папка" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Из ссылки" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Удалённые файлы" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Отмена загрузки" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "У вас нет разрешений на запись здесь." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Здесь ничего нет. Загрузите что-нибудь!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Скачать" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Отменить публикацию" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Файл слишком большой" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Файлы, которые Вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Подождите, файлы сканируются." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Текущее сканирование" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Обновление кеша файловой системы..." +msgstr "" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 414201060b..e4d7e68cc1 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012. -# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Шифрование" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Шифрование файла включено." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Следующие типы файлов не будут зашифрованы:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Исключить следующие типы файлов из шифрованных:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ничего" +msgstr "" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index fc72612e75..d708f2b9fe 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -3,18 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012 -# sam002 , 2012 -# eurekafag , 2013 -# skoptev , 2012 -# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 15:30+0000\n" -"Last-Translator: eurekafag \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Доступ предоставлен" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Ошибка при настройке хранилища Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Предоставление доступа" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Пожалуйста, предоставьте действующий ключ Dropbox и пароль." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Ошибка при настройке хранилища Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "Внимание: Поддержка Curl в PHP не включена или не установлена. Подключение ownCloud / WebDAV или GoogleDrive невозможно. Попросите вашего системного администратора установить его." +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Внешний носитель" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Имя папки" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Внешний носитель данных" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Конфигурация" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Опции" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Применимый" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Добавить носитель данных" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Не установлено" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Все пользователи" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Группы" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Пользователи" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Удалить" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Включить пользовательские внешние носители" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Разрешить пользователям монтировать их собственные внешние носители" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Корневые сертификаты SSL" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Импортировать корневые сертификаты" +msgstr "" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 1278347ec8..5ec29f9406 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012. -# , 2012. -# , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -23,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Пароль" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Отправить" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s открыл доступ к папке %s для Вас" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s открыл доступ к файлу %s для Вас" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Скачать" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Предпросмотр недоступен для" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "веб-сервисы под вашим управлением" +msgstr "" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 45af8ef813..cd07d4ca93 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "%s не может быть удалён навсегда" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "%s не может быть восстановлен" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "выполнить операцию восстановления" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Ошибка" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "удалить файл навсегда" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Удалено навсегда" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Имя" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Удалён" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 папка" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} папок" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 файл" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} файлов" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Здесь ничего нет. Ваша корзина пуста!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Восстановить" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Удалить" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Удаленные файлы" +msgstr "" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index da5a0e0228..f8bd0a39fc 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012. -# , 2012. -# , 2012. -# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -24,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Не может быть возвращён: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "успех" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Файл %s был возвращён к версии %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "провал" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Файл %s не может быть возвращён к версии %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Нет доступных старых версий" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Путь не указан" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Версии" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Вернуть файл к предыдущей версии нажатием на кнопку возврата" +msgstr "" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index e6a61975e2..ebea6c0f0a 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -3,20 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2013 -# Denis , 2012 -# k0ldbl00d , 2012 -# Mihail Vasiliev , 2012 -# mPolr , 2012 -# m4rkell , 2013 -# VicDeo , 2012 -# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -27,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Помощь" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Личное" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Настройки" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Пользователи" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Приложения" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP-скачивание отключено." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Файлы должны быть загружены по одному." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Назад к файлам" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "Невозможно установить" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Приложение не разрешено" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Ошибка аутентификации" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Токен просрочен. Перезагрузите страницу." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Файлы" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Текст" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Изображения" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Установить имя пользователя для admin." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "становит пароль для admin." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s введите имя пользователя базы данных." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s введите имя базы данных." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s Вы не можете использовать точки в имени базы данных" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s задайте хост базы данных." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Неверное имя пользователя и/или пароль PostgreSQL" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Вы должны войти или в существующий аккаунт или под администратором." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Неверное имя пользователя и/или пароль Oracle" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Неверное имя пользователя и/или пароль MySQL" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Ошибка БД: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Вызываемая команда была: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Пользователь MySQL '%s'@'localhost' уже существует." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Удалить этого пользователя из MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Пользователь MySQL '%s'@'%%' уже существует" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Удалить этого пользователя из MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Вызываемая команда была: \"%s\", имя: %s, пароль: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Имя пользователя и/или пароль MS SQL не подходит: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Пожалуйста, дважды просмотрите инструкции по установке." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "менее минуты" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 минуту назад" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d минут назад" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "час назад" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d часов назад" +msgstr "" #: template.php:118 msgid "today" -msgstr "сегодня" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "вчера" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d дней назад" +msgstr "" #: template.php:121 msgid "last month" -msgstr "в прошлом месяце" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d месяцев назад" +msgstr "" #: template.php:123 msgid "last year" -msgstr "в прошлом году" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "годы назад" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "Возможно обновление до %s. Подробнее" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "актуальная версия" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "проверка обновлений отключена" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Категория \"%s\" не найдена" +msgstr "" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 610387759c..b5f203f14b 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -3,27 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2012 -# Robin Appelman , 2012 -# jekader , 2012 -# Yaroslav Petrov , 2012 -# Nick Remeslennikov , 2012 -# rasperepodvipodvert , 2012 -# sam002 , 2012 -# m4rkell , 2013 -# adol , 2012-2013 -# skoptev , 2012 -# tonymc , 2011 -# unixoid , 2013 -# Victor Bravo <>, 2012 -# VicDeo , 2012 -# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -34,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Загрузка из App Store запрещена" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Ошибка авторизации" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -47,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Невозможно изменить отображаемое имя" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Группа уже существует" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Невозможно добавить группу" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Не удалось включить приложение." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email сохранен" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Неправильный Email" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Невозможно удалить группу" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Невозможно удалить пользователя" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Язык изменён" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Неверный запрос" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Администратор не может удалить сам себя из группы admin" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Невозможно добавить пользователя в группу %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Невозможно удалить пользователя из группы %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Невозможно обновить приложение" +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Обновить до {версия приложения}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Выключить" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Включить" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Повремени..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Ошибка" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Обновление..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Ошибка в процессе обновления приложения" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Обновлено" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Сохранение..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "удален" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "отмена" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Невозможно удалить пользователя" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Группы" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Группа Администраторы" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Удалить" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "добавить группу" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Предоставте подходящее имя пользователя" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Ошибка создания пользователя" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Предоставте подходящий пароль" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Русский " +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Предупреждение безопасности" +msgstr "" #: templates/admin.php:18 msgid "" @@ -195,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Ваши каталоги данных и файлы, вероятно, доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить вебсервер таким образом, чтобы каталоги данных больше не были доступны, или переместить их за пределы корневого каталога документов веб-сервера." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Предупреждение установки" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Пожалуйста, дважды просмотрите инструкции по установке." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Модуль 'fileinfo' потерян" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "PHP модуль 'fileinfo' потерян. Мы настоятельно рекомендуем включить этот модуль для получения лучших результатов в mime-типе обнаружения." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Локализация не работает" +msgstr "" #: templates/admin.php:63 #, php-format @@ -232,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Этот сервер ownCloud не может установить язык системы на %s. Это означает, что могут быть проблемы с некоторыми символами в именах файлов. Мы настоятельно рекомендуем установить необходимые пакеты в вашей системе для поддержки %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Интернет соединение не работает" +msgstr "" #: templates/admin.php:78 msgid "" @@ -246,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Этот сервер ownCloud не имеет ни одного рабочего интернет соединения. Это значит, что некоторые возможности, такие как монтаж внешних носителей, уведомления о обновлениях или установки 3го рода приложений,не работают." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Демон" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Выполнять одно задание с каждой загруженной страницей" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php зарегистрирован на webcron сервисе. Вызов страницы cron.php в корне owncloud раз в минуту через http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Использование системной службы cron. Вызов файла cron.php в папке owncloud через систему cronjob раз в минуту." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Общий доступ" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Включить API общего доступа" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Позволить программам использовать API общего доступа" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Разрешить ссылки" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Разрешить пользователям открывать в общий доступ эллементы с публичной ссылкой" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Разрешить переоткрытие общего доступа" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Разрешить пользователя делать общий доступ любому" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Безопасность" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Принудить к HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Принудить клиентов подключаться к ownCloud через шифрованное подключение." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Пожалуйста, подключитесь к этому экземпляру ownCloud через HTTPS для включения или отключения SSL принуждения." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Лог" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Уровень лога" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Больше" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Меньше" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Версия" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -351,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Разрабатывается сообществом ownCloud, исходный код доступен под лицензией AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Добавить приложение" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Больше приложений" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Выберите приложение" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Смотрите дополнения на apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr " лицензия. Автор " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Обновить" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Пользовательская документация" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Документация администратора" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Online документация" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Форум" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Коммерческая поддержка" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Вы использовали %s из доступных %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Получить приложения для синхронизации ваших файлов" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Показать помощник настройки" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Пароль" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Ваш пароль изменён" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Невозможно сменить пароль" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Текущий пароль" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Новый пароль" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Сменить пароль" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Отображаемое имя" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "e-mail" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Ваш адрес электронной почты" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Язык" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Помочь с переводом" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Используйте этот URL для подключения файлового менеджера к Вашему хранилищу" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Имя пользователя" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Создать" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Хранилище по-умолчанию" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Неограниченно" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Другое" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Хранилище" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "изменить отображаемое имя" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "установить новый пароль" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "По-умолчанию" +msgstr "" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 96e71415b2..90d65b6c14 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <4671992@gmail.com>, 2012. -# Denis , 2012. -# , 2012. -# Victor Ashirov , 2013. -# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -24,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Не удалось удалить конфигурацию сервера" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Конфигурация правильная и подключение может быть установлено!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Конфигурация верна, но операция подключения завершилась неудачно. Пожалуйста, проверьте настройки сервера и учетные данные." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Конфигурация не верна. Пожалуйста, посмотрите в журнале ownCloud детали." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Удаление не удалось" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Принять настройки из последней конфигурации сервера?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Сохранить настройки?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Не получилось добавить конфигурацию сервера" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Проверка соединения удалась" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Проверка соединения не удалась" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Вы действительно хотите удалить существующую конфигурацию сервера?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Подтверждение удаления" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Внимание:Приложения user_ldap и user_webdavauth несовместимы. Вы можете столкнуться с неожиданным поведением. Пожалуйста, обратитесь к системному администратору, чтобы отключить одно из них." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Внимание: Модуль LDAP для PHP не установлен, бэкенд не будет работать. Пожалуйста, попросите вашего системного администратора его установить. " +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Конфигурация сервера" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Добавить конфигурацию сервера" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Сервер" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Можно опустить протокол, за исключением того, когда вам требуется SSL. Тогда начните с ldaps :/ /" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Базовый DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "По одному базовому DN в строке." +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Вы можете задать Base DN для пользователей и групп на вкладке \"Расширенное\"" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN пользователя" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN-клиента пользователя, с которым связывают должно быть заполнено, например, uid=агент, dc=пример, dc=com. Для анонимного доступа, оставьте DN и пароль пустыми." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Пароль" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Для анонимного доступа оставьте DN и пароль пустыми." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Фильтр входа пользователей" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Определяет фильтр для применения при попытке входа. %%uid заменяет имя пользователя при входе в систему." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "используйте заполнитель %%uid, например: \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Фильтр списка пользователей" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Определяет фильтр для применения при получении пользователей." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "без заполнителя, например: \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Фильтр группы" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Определяет фильтр для применения при получении группы." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "без заполнения, например \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Настройки подключения" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Конфигурация активна" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Когда галочка снята, эта конфигурация будет пропущена." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Порт" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Адрес резервного сервера" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Укажите дополнительный резервный сервер. Он должен быть репликой главного LDAP/AD сервера." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Порт резервного сервера" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Отключение главного сервера" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Когда включено, ownCloud будет соединяться только с резервным сервером." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Использовать TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Не используйте совместно с безопасными подключениями (LDAPS), это не сработает." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Нечувствительный к регистру сервер LDAP (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Отключить проверку сертификата SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Если соединение работает только с этой опцией, импортируйте на ваш сервер ownCloud сертификат SSL сервера LDAP." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Не рекомендуется, используйте только для тестирования." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Кэш времени жизни" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "в секундах. Изменение очистит кэш." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Настройки каталога" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Поле отображаемого имени пользователя" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Атрибут LDAP для генерации имени пользователя ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "База пользовательского дерева" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "По одной базовому DN пользователей в строке." +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Поисковые атрибуты пользователя" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Опционально; один атрибут на линию" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Поле отображаемого имени группы" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Атрибут LDAP для генерации имени группы ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "База группового дерева" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "По одной базовому DN групп в строке." +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Атрибуты поиска для группы" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Ассоциация Группа-Участник" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Специальные атрибуты" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Поле квота" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Квота по умолчанию" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "в байтах" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Поле адресса эллектронной почты" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Правило именования Домашней Папки Пользователя" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Оставьте имя пользователя пустым (по умолчанию). Иначе укажите атрибут LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Тестовая конфигурация" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Помощь" +msgstr "" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index ec8ebef483..a8461b3fa3 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012 -# Chamara Disanayake , 2012 -# Thanoja , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -76,7 +73,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "මකා දැමීම සඳහා ප්‍රවර්ගයන් තෝරා නොමැත." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -85,91 +82,91 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "ඉරිදා" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "සඳුදා" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "අඟහරුවාදා" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "බදාදා" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "බ්‍රහස්පතින්දා" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "සිකුරාදා" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "සෙනසුරාදා" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "ජනවාරි" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "පෙබරවාරි" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "මාර්තු" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "අප්‍රේල්" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "මැයි" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "ජූනි" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "ජූලි" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "අගෝස්තු" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "සැප්තැම්බර්" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "ඔක්තෝබර්" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "නොවැම්බර්" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "දෙසැම්බර්" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "සැකසුම්" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "තත්පරයන්ට පෙර" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 මිනිත්තුවකට පෙර" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" @@ -185,11 +182,11 @@ msgstr "" #: js/js.js:723 msgid "today" -msgstr "අද" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "ඊයේ" +msgstr "" #: js/js.js:725 msgid "{days} days ago" @@ -197,7 +194,7 @@ msgstr "" #: js/js.js:726 msgid "last month" -msgstr "පෙර මාසයේ" +msgstr "" #: js/js.js:727 msgid "{months} months ago" @@ -205,35 +202,35 @@ msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "මාස කීපයකට පෙර" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "පෙර අවුරුද්දේ" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "අවුරුදු කීපයකට පෙර" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "හරි" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "එපා" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "තෝරන්න" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "ඔව්" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "නැහැ" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -246,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "දෝෂයක්" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -262,7 +259,7 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "බෙදා හදා ගන්න" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" @@ -286,19 +283,19 @@ msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "බෙදාගන්න" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "යොමුවක් මඟින් බෙදාගන්න" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "මුර පදයකින් ආරක්ශාකරන්න" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "මුර පදය " +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -310,15 +307,15 @@ msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "කල් ඉකුත් විමේ දිනය දමන්න" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "කල් ඉකුත් විමේ දිනය" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "විද්‍යුත් තැපෑල මඟින් බෙදාගන්න: " +msgstr "" #: js/share.js:213 msgid "No people found" @@ -334,43 +331,43 @@ msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "නොබෙදු" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "සංස්කරණය කළ හැක" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "ප්‍රවේශ පාලනය" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "සදන්න" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "යාවත්කාලීන කරන්න" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "මකන්න" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "බෙදාහදාගන්න" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "මුර පදයකින් ආරක්ශාකර ඇත" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" +msgstr "" #: js/share.js:604 msgid "Sending ..." @@ -393,7 +390,7 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud මුරපදය ප්‍රත්‍යාරම්භ කරන්න" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -401,7 +398,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "ඔබගේ මුරපදය ප්‍රත්‍යාරම්භ කිරීම සඳහා යොමුව විද්‍යුත් තැපෑලෙන් ලැබෙනු ඇත" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -409,12 +406,12 @@ msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "ඉල්ලීම අසාර්ථකයි!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "පරිශීලක නම" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" @@ -422,60 +419,60 @@ msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "ඔබේ මුරපදය ප්‍රත්‍යාරම්භ කරන ලදී" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "පිවිසුම් පිටුවට" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "නව මුර පදයක්" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "මුරපදය ප්‍රත්‍යාරම්භ කරන්න" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "පෞද්ගලික" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "පරිශීලකයන්" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "යෙදුම්" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "පරිපාලක" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "උදව්" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "ඇතුල් වීම තහනම්" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "සොයා ගත නොහැක" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "ප්‍රභේදයන් සංස්කරණය" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "එක් කරන්න" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "ආරක්ෂක නිවේදනයක්" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -495,7 +492,7 @@ msgstr "" msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "ආරක්ෂිත අහඹු සංඛ්‍යා උත්පාදකයක් නොමැති නම් ඔබගේ ගිණුමට පහරදෙන අයකුට එහි මුරපද යළි පිහිටුවීමට අවශ්‍ය ටෝකන පහසුවෙන් සොයාගෙන ඔබගේ ගිණුම පැහැරගත හැක." +msgstr "" #: templates/installation.php:39 msgid "" @@ -516,33 +513,33 @@ msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "දියුණු/උසස්" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "දත්ත ෆෝල්ඩරය" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "දත්ත සමුදාය හැඩගැසීම" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "භාවිතා වනු ඇත" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "දත්තගබඩා භාවිතාකරු" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "දත්තගබඩාවේ මුරපදය" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "දත්තගබඩාවේ නම" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" @@ -550,19 +547,19 @@ msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "දත්තගබඩා සේවාදායකයා" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "නික්මීම" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" @@ -580,15 +577,15 @@ msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "මුරපදය අමතකද?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "මතක තබාගන්න" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "ප්‍රවේශවන්න" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -596,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "පෙර" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "ඊළඟ" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index ce5174209a..b1b6a7c3ec 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012 -# Chamara Disanayake , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -35,11 +33,11 @@ msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "නිවැරදි ව ගොනුව උඩුගත කෙරිනි" +msgstr "" #: ajax/upload.php:27 msgid "" @@ -50,23 +48,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "කිසිදු ගොනවක් උඩුගත නොවිනි" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "තාවකාලික ෆොල්ඩරයක් සොයාගත නොහැක" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "තැටිගත කිරීම අසාර්ථකයි" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -78,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "ගොනු" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "බෙදා හදා ගන්න" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -90,11 +88,11 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "මකන්න" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "නැවත නම් කරන්න" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" @@ -106,15 +104,15 @@ msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "ප්‍රතිස්ථාපනය කරන්න" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "නමක් යෝජනා කරන්න" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "අත් හරින්න" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" @@ -122,7 +120,7 @@ msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "නිෂ්ප්‍රභ කරන්න" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -130,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 ගොනුවක් උඩගත කෙරේ" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -174,16 +172,16 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "උඩුගත කිරීම අත් හරින්න ලදී" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "යොමුව හිස් විය නොහැක" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -191,23 +189,23 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "දෝෂයක්" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "නම" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "ප්‍රමාණය" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "වෙනස් කළ" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 ෆොල්ඩරයක්" +msgstr "" #: js/files.js:895 msgid "{count} folders" @@ -215,7 +213,7 @@ msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 ගොනුවක්" +msgstr "" #: js/files.js:905 msgid "{count} files" @@ -223,55 +221,55 @@ msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "උඩුගත කිරීම" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "ගොනු පරිහරණය" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "උඩුගත කිරීමක උපරිම ප්‍රමාණය" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "හැකි උපරිමය:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "බහු-ගොනු හා ෆොල්ඩර බාගත කිරීමට අවශ්‍යයි" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP-බාගත කිරීම් සක්‍රිය කරන්න" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 යනු සීමාවක් නැති බවය" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP ගොනු සඳහා දැමිය හැකි උපරිම විශාලතවය" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "සුරකින්න" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "නව" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "පෙළ ගොනුව" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "ෆෝල්ඩරය" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "යොමුවෙන්" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -279,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "උඩුගත කිරීම අත් හරින්න" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -287,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "බාගත කිරීම" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "නොබෙදු" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "උඩුගත කිරීම විශාල වැඩිය" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "වර්තමාන පරික්ෂාව" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 3e1361874c..0a5540f311 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "ගුප්ත කේතනය" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "කිසිවක් නැත" +msgstr "" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 09a9eee168..d32b20ffe5 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -20,23 +19,23 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "පිවිසීමට හැක" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Dropbox ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "පිවිසුම ලබාදෙන්න" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "කරුණාකර වලංගු Dropbox යෙදුම් යතුරක් හා රහසක් ලබාදෙන්න." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Google Drive ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" +msgstr "" #: lib/config.php:431 msgid "" @@ -60,11 +59,11 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "භාහිර ගබඩාව" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "ෆොල්ඩරයේ නම" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -72,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "වින්‍යාසය" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "විකල්පයන්" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "අදාළ" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -88,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "කිසිවක් නැත" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "සියළු පරිශීලකයන්" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "කණ්ඩායම්" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "පරිශීලකයන්" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "මකා දමන්න" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "පරිශීලක භාහිර ගබඩාවන් සක්‍රිය කරන්න" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "පරිශීලකයන්ට තමාගේම භාහිර ගබඩාවන් මවුන්ට් කිරීමේ අයිතිය දෙන්න" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL මූල සහතිකයන්" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "මූල සහතිකය ආයාත කරන්න" +msgstr "" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index d4a15ed844..c600871456 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "මුරපදය" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "යොමු කරන්න" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "භාගත කරන්න" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "පූර්වදර්ශනයක් නොමැත" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" +msgstr "" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index bc2af0ccec..7945d44d88 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "දෝෂයක්" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "නම" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,7 +53,7 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 ෆොල්ඩරයක්" +msgstr "" #: js/trash.js:186 msgid "{count} folders" @@ -61,7 +61,7 @@ msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 ගොනුවක්" +msgstr "" #: js/trash.js:196 msgid "{count} files" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "මකා දමන්න" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po index eb2829745c..fb390f6e4b 100644 --- a/l10n/si_LK/files_versions.po +++ b/l10n/si_LK/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index c785afebd7..2eea925228 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012 -# dinusha , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -21,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "උදව්" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "පෞද්ගලික" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "සිටුවම්" +msgstr "" #: app.php:385 msgid "Users" -msgstr "පරිශීලකයන්" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "යෙදුම්" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "පරිපාලක" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP භාගත කිරීම් අක්‍රියයි" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "ගොනු එකින් එක භාගත යුතුයි" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "ගොනු වෙතට නැවත යන්න" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "තෝරාගත් ගොනු ZIP ගොනුවක් තැනීමට විශාල වැඩිය." +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -65,27 +63,27 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "යෙදුම සක්‍රිය කර නොමැත" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "සත්‍යාපනය කිරීමේ දෝශයක්" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න" +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "ගොනු" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "පෙළ" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "අනු රූ" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -115,88 +113,88 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "තත්පරයන්ට පෙර" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 මිනිත්තුවකට පෙර" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d මිනිත්තුවන්ට පෙර" +msgstr "" #: template.php:116 msgid "1 hour ago" @@ -209,20 +207,20 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "අද" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "ඊයේ" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d දිනකට පෙර" +msgstr "" #: template.php:121 msgid "last month" -msgstr "පෙර මාසයේ" +msgstr "" #: template.php:122 #, php-format @@ -231,24 +229,24 @@ msgstr "" #: template.php:123 msgid "last year" -msgstr "පෙර අවුරුද්දේ" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "අවුරුදු කීපයකට පෙර" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s යොදාගත හැක. තව විස්තර ලබාගන්න" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "යාවත්කාලීනයි" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "යාවත්කාලීන බව පරීක්ෂණය අක්‍රියයි" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 3cdd043744..d44d971d96 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012 -# Chamara Disanayake , 2012 -# Thanoja , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -27,7 +24,7 @@ msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "සත්‍යාපන දෝෂයක්" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -39,39 +36,39 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "කණ්ඩායම දැනටමත් තිබේ" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "කාණඩයක් එක් කළ නොහැකි විය" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "යෙදුම සක්‍රීය කළ නොහැකි විය." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "වි-තැපෑල සුරකින ලදී" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "අවලංගු වි-තැපෑල" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "කණ්ඩායම මැකීමට නොහැක" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "පරිශීලකයා මැකීමට නොහැක" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "භාෂාව ාවනස් කිරීම" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "අවලංගු අයදුම" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -80,12 +77,12 @@ msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "පරිශීලකයා %s කණ්ඩායමින් ඉවත් කළ නොහැක" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -97,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "අක්‍රිය කරන්න" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "ක්‍රියත්මක කරන්න" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -109,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "දෝෂයක්" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -125,7 +122,7 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "සුරැකෙමින් පවතී..." +msgstr "" #: js/users.js:43 msgid "deleted" @@ -133,7 +130,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "නිෂ්ප්‍රභ කරන්න" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -142,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "සමූහය" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "කාණ්ඩ පරිපාලක" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "මකා දමනවා" +msgstr "" #: js/users.js:262 msgid "add group" @@ -174,7 +171,7 @@ msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "ආරක්ෂක නිවේදනයක්" +msgstr "" #: templates/admin.php:18 msgid "" @@ -183,7 +180,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "ඔබගේ දත්ත ඩිරෙක්ටරිය හා ගොනුවලට අන්තර්ජාලයෙන් පිවිසිය හැක. ownCloud සපයා ඇති .htaccess ගොනුව ක්‍රියාකරන්නේ නැත. අපි තරයේ කියා සිටිනුයේ නම්, මෙම දත්ත හා ගොනු එසේ පිවිසීමට නොහැකි වන ලෙස ඔබේ වෙබ් සේවාදායකයා වින්‍යාස කරන ලෙස හෝ එම ඩිරෙක්ටරිය වෙබ් මූලයෙන් පිටතට ගෙනයන ලෙසය." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" @@ -321,11 +318,11 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "වැඩි" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "අඩු" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" @@ -339,19 +336,19 @@ msgid "" "licensed under the AGPL." -msgstr "නිපදන ලද්දේ ownCloud සමාජයෙන්, the මුල් කේතය ලයිසන්ස් කර ඇත්තේ AGPL යටතේ." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "යෙදුමක් එක් කිරීම" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "තවත් යෙදුම්" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "යෙදුමක් තොරන්න" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" @@ -363,7 +360,7 @@ msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "යාවත්කාල කිරීම" +msgstr "" #: templates/help.php:4 msgid "User Documentation" @@ -404,27 +401,27 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "මුරපදය" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "මුර පදය වෙනස් කළ නොහැකි විය" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "වත්මන් මුරපදය" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "නව මුරපදය" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "මුරපදය වෙනස් කිරීම" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -432,23 +429,23 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "විද්‍යුත් තැපෑල" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "ඔබගේ විද්‍යුත් තැපෑල" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "මුරපද ප්‍රතිස්ථාපනය සඳහා විද්‍යුත් තැපැල් විස්තර ලබා දෙන්න" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "භාෂාව" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "පරිවර්ථන සහය" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -464,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "තනන්න" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -476,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "වෙනත්" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 3fdeae7d3a..d61789c85d 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -40,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "මකාදැමීම අසාර්ථකයි" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -93,12 +92,12 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "සත්කාරකය" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "SSL අවශ්‍යය වන විට පමණක් හැර, අන් අවස්ථාවන්හිදී ප්‍රොටොකෝලය අත් හැරිය හැක. භාවිතා කරන විට ldaps:// ලෙස ආරම්භ කරන්න" +msgstr "" #: templates/settings.php:39 msgid "Base DN" @@ -125,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "මුර පදය" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -133,7 +132,7 @@ msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "පරිශීලක පිවිසුම් පෙරහන" +msgstr "" #: templates/settings.php:53 #, php-format @@ -149,7 +148,7 @@ msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "පරිශීලක ලැයිස්තු පෙරහන" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." @@ -161,11 +160,11 @@ msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "කණ්ඩායම් පෙරහන" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "කණ්ඩායම් සොයා ලබාගන්නා විට, යොදන පෙරහන නියම කරයි" +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." @@ -185,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "තොට" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -211,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "TLS භාවිතා කරන්න" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -233,7 +232,7 @@ msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "නිර්දේශ කළ නොහැක. පරීක්ෂණ සඳහා පමණක් භාවිත කරන්න" +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -331,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "උදව්" +msgstr "" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 585de750f2..5d7ad71873 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -293,7 +293,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "" @@ -409,7 +409,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "" @@ -519,37 +519,37 @@ msgstr "" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" @@ -561,33 +561,33 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 89495fb23a..b8788c7a3b 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index 0e065e2795..e1bece6b03 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 1b1accf306..6addb65af3 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 1b12c17386..9348337814 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 725fce0126..d363a222d4 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_versions.po b/l10n/sk/files_versions.po index 7157752d71..1a9009a2ae 100644 --- a/l10n/sk/files_versions.po +++ b/l10n/sk/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 72fd060bdd..a79be3f159 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 7ce9514b09..1c2339b2dc 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index 37edfc8d9f..289b258772 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index f9e1c5b98c..03bf79fb7f 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# georg007 , 2013 -# intense , 2011, 2012 -# mhh , 2013 -# martinb , 2012 -# mehturt , 2013 -# Roman Priesol , 2012 -# martin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -27,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Používateľ %s zdieľa s Vami súbor" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Používateľ %s zdieľa s Vami priečinok" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Používateľ %s zdieľa s Vami súbor \"%s\". Môžete si ho stiahnuť tu: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Používateľ %s zdieľa s Vami priečinok \"%s\". Môžete si ho stiahnuť tu: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Neposkytnutý typ kategórie." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Žiadna kategória pre pridanie?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Kategória: %s už existuje." +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Neposkytnutý typ objektu." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID neposkytnuté." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Chyba pri pridávaní %s do obľúbených položiek." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Neboli vybrané žiadne kategórie pre odstránenie." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Chyba pri odstraňovaní %s z obľúbených položiek." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Nedeľa" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Pondelok" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Utorok" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Streda" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Štvrtok" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Piatok" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Sobota" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Január" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Február" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Marec" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Apríl" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Máj" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Jún" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Júl" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "August" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Október" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "December" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Nastavenia" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "pred sekundami" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "pred minútou" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "pred {minutes} minútami" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "Pred 1 hodinou." +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "Pred {hours} hodinami." +msgstr "" #: js/js.js:723 msgid "today" -msgstr "dnes" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "včera" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "pred {days} dňami" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "minulý mesiac" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "Pred {months} mesiacmi." +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "pred mesiacmi" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "minulý rok" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "pred rokmi" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Zrušiť" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Výber" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Áno" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nie" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Nešpecifikovaný typ objektu." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -250,363 +243,363 @@ msgstr "Nešpecifikovaný typ objektu." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Chyba" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Nešpecifikované meno aplikácie." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Požadovaný súbor {file} nie je nainštalovaný!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Zdieľané" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Zdieľať" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Chyba počas zdieľania" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Chyba počas ukončenia zdieľania" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Chyba počas zmeny oprávnení" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Zdieľané s vami a so skupinou {group} používateľom {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Zdieľané s vami používateľom {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Zdieľať s" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Zdieľať cez odkaz" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Chrániť heslom" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Heslo" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Odoslať odkaz emailom" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Odoslať" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Nastaviť dátum expirácie" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Dátum expirácie" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Zdieľať cez e-mail:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Používateľ nenájdený" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Zdieľanie už zdieľanej položky nie je povolené" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Zdieľané v {item} s {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Zrušiť zdieľanie" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "môže upraviť" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "prístupové práva" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "vytvoriť" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "aktualizovať" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "vymazať" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "zdieľať" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Chránené heslom" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Chyba pri odstraňovaní dátumu expirácie" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Chyba pri nastavení dátumu expirácie" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Odosielam ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Email odoslaný" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Aktualizácia nebola úspešná. Problém nahláste na ownCloud community." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Obnovenie hesla pre ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Odkaz pre obnovenie hesla obdržíte e-mailom." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Obnovovací email bol odoslaný." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Požiadavka zlyhala!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Prihlasovacie meno" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Požiadať o obnovenie" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Vaše heslo bolo obnovené" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Na prihlasovaciu stránku" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nové heslo" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Obnovenie hesla" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Osobné" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Používatelia" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Aplikácie" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Administrácia" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Pomoc" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Prístup odmietnutý" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Nenájdené" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Úprava kategórií" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Pridať" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Bezpečnostné varovanie" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Aktualizujte prosím Vašu inštanciu PHP pre bezpečné používanie ownCloud." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Nie je dostupný žiadny bezpečný generátor náhodných čísel, prosím, povoľte rozšírenie OpenSSL v PHP." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Bez bezpečného generátora náhodných čísel môže útočník predpovedať token pre obnovu hesla a prevziať kontrolu nad vaším kontom." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Váš priečinok s dátami a súbormi je dostupný z internetu, lebo súbor .htaccess nefunguje." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Pre informácie, ako správne nastaviť Váš server sa pozrite do dokumentácie." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Vytvoriť administrátorský účet" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Rozšírené" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Priečinok dát" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Nastaviť databázu" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "bude použité" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Hostiteľ databázy" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Heslo databázy" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Meno databázy" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Tabuľkový priestor databázy" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Server databázy" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Dokončiť inštaláciu" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "webové služby pod vašou kontrolou" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Odhlásiť" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatické prihlásenie bolo zamietnuté!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kompromitovaný." +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie Vášho účtu" +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Zabudli ste heslo?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "zapamätať" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Prihlásiť sa" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternatívne prihlasovanie" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "späť" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "ďalej" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať." +msgstr "" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 0a33201660..e22199ba01 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# georg007 , 2013 -# intense , 2012 -# mhh , 2013 -# martinb , 2012 -# martin , 2013 -# Roman Priesol , 2012 -# martin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -27,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Nie je možné presunúť %s - súbor s týmto menom už existuje" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Nie je možné presunúť %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Nemožno premenovať súbor" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Nahrávaný súbor presiahol MAX_FILE_SIZE direktívu, ktorá bola špecifikovaná v HTML formulári" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Nahrávaný súbor bol iba čiastočne nahraný" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Žiaden súbor nebol nahraný" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Chýbajúci dočasný priečinok" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Zápis na disk sa nepodaril" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Nedostatok dostupného úložného priestoru" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Neplatný priečinok" +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Súbory" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Zdieľať" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Zmazať trvalo" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Odstrániť" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Premenovať" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Čaká sa" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} už existuje" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "nahradiť" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "pomôcť s menom" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "zrušiť" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "prepísaný {new_name} súborom {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "vrátiť" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "vykonať zmazanie" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 súbor sa posiela " +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "nahrávanie súborov" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' je neplatné meno súboru." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Meno súboru nemôže byť prázdne" +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Vaše úložisko je takmer plné ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Nie je k dispozícii dostatok miesta" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Odosielanie zrušené" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL nemôže byť prázdne" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len pre Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Chyba" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Meno" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Veľkosť" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Upravené" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 priečinok" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} priečinkov" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 súbor" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} súborov" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Odoslať" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Nastavenie správania sa k súborom" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximálna veľkosť odosielaného súboru" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "najväčšie možné:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Vyžadované pre sťahovanie viacerých súborov a priečinkov." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Povoliť sťahovanie ZIP súborov" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 znamená neobmedzené" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Najväčšia veľkosť ZIP súborov" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Uložiť" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nový" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Textový súbor" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Priečinok" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Z odkazu" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Zmazané súbory" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Zrušiť odosielanie" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Nemáte oprávnenie na zápis." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Žiadny súbor. Nahrajte niečo!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Stiahnuť" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Nezdielať" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Odosielaný súbor je príliš veľký" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Čakajte, súbory sú prehľadávané." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Práve prezerané" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Aktualizujem medzipamäť súborového systému..." +msgstr "" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 69c0359cc1..523a81b22a 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# georg , 2013. -# , 2012. -# Marián Hvolka , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -22,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Šifrovanie" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Šifrovanie súborov nastavené." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Uvedené typy súborov nebudú šifrované:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Nešifrovať uvedené typy súborov" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Žiadne" +msgstr "" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 5bbf018c25..f2c3be0198 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# intense , 2012 -# mhh , 2013 -# martinb , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -22,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Prístup povolený" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Chyba pri konfigurácii úložiska Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Povoliť prístup" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Zadajte platný kľúč aplikácie a heslo Dropbox" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Chyba pri konfigurácii úložiska Google drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Upozornenie: Podpora FTP v PHP nie je povolená alebo nainštalovaná. Nie je možné pripojenie oddielov FTP. Požiadajte administrátora systému, nech ho nainštaluje." +msgstr "" #: lib/config.php:437 msgid "" @@ -62,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Externé úložisko" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Meno priečinka" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Externé úložisko" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Nastavenia" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Možnosti" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Aplikovateľné" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Pridať úložisko" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Žiadne nastavené" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Všetci používatelia" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Skupiny" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Používatelia" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Odstrániť" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Povoliť externé úložisko" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Povoliť používateľom pripojiť ich vlastné externé úložisko" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Koreňové SSL certifikáty" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importovať koreňový certifikát" +msgstr "" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index d792bd55d1..a7f6cfecc1 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Heslo" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Odoslať" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s zdieľa s vami priečinok %s" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s zdieľa s vami súbor %s" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Stiahnuť" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Žiaden náhľad k dispozícii pre" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "webové služby pod Vašou kontrolou" +msgstr "" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 4c53d28f01..4ef0c7c526 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# georg , 2013. -# Marián Hvolka , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Nemožno zmazať %s navždy" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Nemožno obnoviť %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "vykonať obnovu" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Chyba" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "trvalo zmazať súbor" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Zmazať trvalo" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Meno" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Zmazané" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 priečinok" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} priečinkov" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 súbor" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} súborov" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Žiadny obsah. Kôš je prázdny!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Obnoviť" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Zmazať" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Zmazané súbory" +msgstr "" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 6bb0cb836c..f091b5c216 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# georg , 2013. -# Marián Hvolka , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -23,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Nemožno obnoviť: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "úspech" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Súbor %s bol obnovený na verziu %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "chyba" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Súbor %s nemohol byť obnovený na verziu %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Nie sú dostupné žiadne staršie verzie" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Nevybrali ste cestu" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Verzie" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Obnovte súbor do predošlej verzie kliknutím na tlačítko obnoviť" +msgstr "" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index b99a339307..6e243f8382 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 -# martinb , 2012 -# Roman Priesol , 2012 -# martin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -23,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Pomoc" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Osobné" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Nastavenia" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Používatelia" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Aplikácie" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Administrátor" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Sťahovanie súborov ZIP je vypnuté." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Súbory musia byť nahrávané jeden za druhým." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Späť na súbory" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "nedá sa zistiť" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Aplikácia nie je zapnutá" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Chyba autentifikácie" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token vypršal. Obnovte, prosím, stránku." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Súbory" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Text" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Obrázky" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Zadajte používateľské meno administrátora." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Zadajte heslo administrátora." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "Zadajte používateľské meno %s databázy.." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "Zadajte názov databázy pre %s databázy." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "V názve databázy %s nemôžete používať bodky" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "Zadajte názov počítača s databázou %s." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Používateľské meno a/alebo heslo pre PostgreSQL databázu je neplatné" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Musíte zadať jestvujúci účet alebo administrátora." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Používateľské meno a/alebo heslo pre MySQL databázu je neplatné" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Chyba DB: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Podozrivý príkaz bol: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Používateľ '%s'@'localhost' už v MySQL existuje." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Zahodiť používateľa z MySQL." - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Používateľ '%s'@'%%' už v MySQL existuje" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Zahodiť používateľa z MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Používateľské meno, alebo heslo MS SQL nie je platné: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Prosím skontrolujte inštalačnú príručku." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "pred sekundami" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "pred 1 minútou" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "pred %d minútami" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "Pred 1 hodinou" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "Pred %d hodinami." +msgstr "" #: template.php:118 msgid "today" -msgstr "dnes" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "včera" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "pred %d dňami" +msgstr "" #: template.php:121 msgid "last month" -msgstr "minulý mesiac" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "Pred %d mesiacmi." +msgstr "" #: template.php:123 msgid "last year" -msgstr "minulý rok" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "pred rokmi" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s je dostupné. Získať pre viac informácií" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "aktuálny" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "sledovanie aktualizácií je vypnuté" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Nemožno nájsť danú kategóriu \"%s\"" +msgstr "" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 103d1169b6..ffebbbda14 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# intense , 2011, 2012 -# mhh , 2013 -# martinb , 2012 -# Roman Priesol , 2012 -# Typhoon , 2012 -# martin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -25,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Nie je možné nahrať zoznam z App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Chyba pri autentifikácii" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -38,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Nemožno zmeniť zobrazované meno" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Skupina už existuje" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Nie je možné pridať skupinu" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Nie je možné zapnúť aplikáciu." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email uložený" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Neplatný email" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Nie je možné odstrániť skupinu" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Nie je možné odstrániť používateľa" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Jazyk zmenený" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Neplatná požiadavka" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administrátori nesmú odstrániť sami seba zo skupiny admin" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Nie je možné pridať používateľa do skupiny %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Nie je možné odstrániť používateľa zo skupiny %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Nemožno aktualizovať aplikáciu." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Aktualizovať na {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Zakázať" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Povoliť" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Čakajte prosím..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Chyba" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Aktualizujem..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "chyba pri aktualizácii aplikácie" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Aktualizované" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Ukladám..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "zmazané" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "vrátiť" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Nemožno odobrať používateľa" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Skupiny" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Správca skupiny" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Odstrániť" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "pridať skupinu" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Musíte zadať platné používateľské meno" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Chyba pri vytváraní používateľa" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Musíte zadať platné heslo" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Slovensky" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Bezpečnostné varovanie" +msgstr "" #: templates/admin.php:18 msgid "" @@ -186,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Váš priečinok s dátami a Vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne Vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Nastavenia oznámení" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Prosím skontrolujte inštalačnú príručku." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Chýba modul 'fileinfo'" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Lokalizácia nefunguje" +msgstr "" #: templates/admin.php:63 #, php-format @@ -223,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Tento server ownCloud nemôže nastaviť národné prostredie systému na %s. To znamená, že by mohli byť problémy s niektorými znakmi v názvoch súborov. Veľmi odporúčame nainštalovať požadované balíky na podporu %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Pripojenie na internet nefunguje" +msgstr "" #: templates/admin.php:78 msgid "" @@ -237,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Tento server ownCloud nemá funkčné pripojenie k internetu. To znamená, že niektoré z funkcií, ako je pripojenie externého úložiska, oznámenia o aktualizáciách či inštalácia aplikácií tretích strán nefungujú. Prístup k súborom zo vzdialených miest a odosielanie oznamovacích e-mailov tiež nemusí fungovať. Odporúčame pripojiť tento server k internetu, ak chcete využívať všetky vlastnosti ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Vykonať jednu úlohu s každým načítaní stránky" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php je registrovaná u služby webcron. Zavolá cron.php stránku v koreňovom priečinku owncloud raz za minútu cez protokol HTTP." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Používať systémovú službu cron. Zavolať cron.php v priečinku owncloud cez systémovú úlohu raz za minútu" +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Zdieľanie" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Povoliť API zdieľania" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Povoliť aplikáciám používať API na zdieľanie" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Povoliť odkazy" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Povoliť zdieľanie ďalej" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Povoliť používateľom ďalej zdieľať zdieľané položky" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Povoliť používateľom zdieľať s kýmkoľvek" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Povoliť používateľom zdieľať len s používateľmi v ich skupinách" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Zabezpečenie" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Vynútiť HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Vynúti pripojovanie klientov ownCloud cez šifrované pripojenie." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Pripojte sa k tejto inštancii ownCloud cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Záznam" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Úroveň záznamu" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Viac" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Menej" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Verzia" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -342,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Vyvinuté komunitou ownCloud,zdrojový kód je licencovaný pod AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Pridať vašu aplikáciu" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Viac aplikácií" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Vyberte aplikáciu" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Pozrite si stránku aplikácií na apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licencované " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Aktualizovať" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Príručka používateľa" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Príručka administrátora" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Online príručka" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Fórum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Komerčná podpora" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Použili ste %s z %s dostupných " +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Získať aplikácie na synchronizáciu Vašich súborov" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Znovu zobraziť sprievodcu prvým spustením" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Heslo" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Heslo bolo zmenené" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Nie je možné zmeniť vaše heslo" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Aktuálne heslo" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nové heslo" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Zmeniť heslo" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Zobrazované meno" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Vaša emailová adresa" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Jazyk" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Pomôcť s prekladom" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Použite túto adresu pre pripojenie vášho ownCloud k súborovému správcovi" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Prihlasovacie meno" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Vytvoriť" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Predvolené úložisko" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Nelimitované" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Iné" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Úložisko" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "zmeniť zobrazované meno" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "nastaviť nové heslo" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Predvolené" +msgstr "" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index dcfe6e11b1..602d6ce8b4 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Marián Hvolka , 2013. -# Roman Priesol , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -21,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Zlyhalo zmazanie nastavenia servera." +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Nastavenie je v poriadku a pripojenie je stabilné." +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Nastavenie je v poriadku, ale pripojenie zlyhalo. Skontrolujte nastavenia servera a prihlasovacie údaje." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Nastavenia sú neplatné. Podrobnosti hľadajte v logu ownCloud." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Odstránenie zlyhalo" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Prebrať nastavenia z nedávneho nastavenia servera?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Ponechať nastavenia?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Nemožno pridať nastavenie servera" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Test pripojenia bol úspešný" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Test pripojenia zlyhal" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Naozaj chcete zmazať súčasné nastavenie servera?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Potvrdiť vymazanie" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Upozornenie: Aplikácie user_ldap a user_webdavauth nie sú kompatibilné. Môže nastávať neočakávané správanie. Požiadajte administrátora systému aby jednu z nich zakázal." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Upozornenie: nie je nainštalovaný LDAP modul pre PHP, backend vrstva nebude fungovať. Požádejte administrátora systému aby ho nainštaloval." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Nastavenia servera" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Pridať nastavenia servera." +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Hostiteľ" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Môžete vynechať protokol, s výnimkou požadovania SSL. Vtedy začnite s ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Základné DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Jedno základné DN na riadok" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "V rozšírenom nastavení môžete zadať základné DN pre používateľov a skupiny" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Používateľské DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN klientského používateľa, ku ktorému tvoríte väzbu, napr. uid=agent,dc=example,dc=com. Pre anonymný prístup ponechajte údaje DN a Heslo prázdne." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Heslo" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Pre anonymný prístup ponechajte údaje DN a Heslo prázdne." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filter prihlásenia používateľov" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Určuje použitý filter, pri pokuse o prihlásenie. %%uid nahradzuje používateľské meno v činnosti prihlásenia." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "použite zástupný vzor %%uid, napr. \\\"uid=%%uid\\\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Filter zoznamov používateľov" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definuje použitý filter, pre získanie používateľov." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "bez zástupných znakov, napr. \"objectClass=person\"" +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filter skupiny" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definuje použitý filter, pre získanie skupín." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "bez zástupných znakov, napr. \"objectClass=posixGroup\"" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Nastavenie pripojenia" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Nastavenia sú aktívne " +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Ak nie je zaškrtnuté, nastavenie bude preskočené." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Záložný server (kópia) hosť" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Zadajte záložný LDAP/AD. Musí to byť kópia hlavného LDAP/AD servera." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Záložný server (kópia) port" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Zakázať hlavný server" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Pri zapnutí sa ownCloud pripojí len k záložnému serveru." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Použi TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Nepoužívajte pre pripojenie LDAPS, zlyhá." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP server nerozlišuje veľkosť znakov (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Vypnúť overovanie SSL certifikátu." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Ak pripojenie pracuje len s touto možnosťou, tak importujte SSL certifikát LDAP serveru do vášho servera ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Nie je doporučované, len pre testovacie účely." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Životnosť objektov v cache" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "v sekundách. Zmena vyprázdni vyrovnávaciu pamäť." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Nastavenie priečinka" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Pole pre zobrazenia mena používateľa" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atribút LDAP použitý na vygenerovanie mena používateľa ownCloud " +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Základný používateľský strom" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Jedna používateľská základná DN na riadok" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Atribúty vyhľadávania používateľov" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Voliteľné, jeden atribút na jeden riadok" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Pole pre zobrazenie mena skupiny" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atribút LDAP použitý na vygenerovanie mena skupiny ownCloud " +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Základný skupinový strom" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Jedna skupinová základná DN na riadok" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atribúty vyhľadávania skupín" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Priradenie člena skupiny" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Špeciálne atribúty" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Pole kvóty" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Predvolená kvóta" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "v bajtoch" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Pole email" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Pravidlo pre nastavenie mena používateľského priečinka dát" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Nechajte prázdne pre používateľské meno (predvolené). Inak uveďte atribút LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Test nastavenia" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Pomoc" +msgstr "" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 9eafb170c6..23b559db73 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mateju <>, 2013 -# mateju <>, 2012 -# mateju <>, 2013 -# Peter Peroša , 2012 -# Peter Peroša , 2012 -# urossolar , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -26,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Uporabnik %s je omogočil souporabo datoteke" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Uporabnik %s je omogočil souporabo mape" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Uporabnik %s je omogočil souporabo datoteke \"%s\". Prejmete jo lahko preko povezave: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Uporabnik %s je omogočil souporabo mape \"%s\". Prejmete jo lahko preko povezave: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Vrsta kategorije ni podana." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Ali ni kategorije za dodajanje?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Kategorija že obstaja: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Vrsta predmeta ni podana." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "ID %s ni podan." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Napaka dodajanja %s med priljubljene predmete." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Za izbris ni izbrana nobena kategorija." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Napaka odstranjevanja %s iz priljubljenih predmetov." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "nedelja" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "ponedeljek" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "torek" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "sreda" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "četrtek" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "petek" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "sobota" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "januar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "februar" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "marec" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "april" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "maj" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "junij" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "julij" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "avgust" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "september" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "november" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "december" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Nastavitve" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "pred nekaj sekundami" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "pred minuto" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "pred {minutes} minutami" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "pred 1 uro" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "pred {hours} urami" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "danes" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "včeraj" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "pred {days} dnevi" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "zadnji mesec" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "pred {months} meseci" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "mesecev nazaj" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "lansko leto" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "let nazaj" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "V redu" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Prekliči" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Izbor" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Da" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Ne" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Vrsta predmeta ni podana." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -249,363 +243,363 @@ msgstr "Vrsta predmeta ni podana." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Napaka" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Ime programa ni podano." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Zahtevana datoteka {file} ni nameščena!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "V souporabi" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Souporaba" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Napaka med souporabo" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Napaka med odstranjevanjem souporabe" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Napaka med spreminjanjem dovoljenj" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "V souporabi z vami in skupino {group}. Lastnik je {owner}." +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "V souporabi z vami. Lastnik je {owner}." +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Omogoči souporabo z" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Omogoči souporabo preko povezave" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Zaščiti z geslom" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Geslo" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Posreduj povezavo po elektronski pošti" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Pošlji" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Nastavi datum preteka" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Datum preteka" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Souporaba preko elektronske pošte:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Ni najdenih uporabnikov" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Nadaljnja souporaba ni dovoljena" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "V souporabi v {item} z {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Odstrani souporabo" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "lahko ureja" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "nadzor dostopa" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "ustvari" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "posodobi" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "izbriši" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "določi souporabo" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Zaščiteno z geslom" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Napaka brisanja datuma preteka" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Napaka med nastavljanjem datuma preteka" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Pošiljanje ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Elektronska pošta je poslana" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Ponastavitev gesla za oblak ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Za ponastavitev gesla uporabite povezavo: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Sporočilo z navodili za ponastavitev gesla je poslana na vaš elektronski naslov." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Zahteva je spodletela!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Uporabniško Ime" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Zahtevaj ponovno nastavitev" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Geslo je ponovno nastavljeno" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Na prijavno stran" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Novo geslo" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Ponastavi geslo" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Osebno" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Uporabniki" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Programi" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Skrbništvo" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Pomoč" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Dostop je prepovedan" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Oblaka ni mogoče najti" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Uredi kategorije" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Dodaj" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Varnostno opozorilo" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Priporočeno je posodobiti namestitev PHP in varno uporabljati oblak ownCloud" +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Na voljo ni nobenega varnega ustvarjalnika naključnih števil. Omogočiti je treba razširitev PHP OpenSSL." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Brez varnega ustvarjalnika naključnih števil je mogoče napovedati žetone za ponastavitev gesla, s čimer je mogoče prevzeti nadzor nad računom." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Navodila, kako pravilno namestiti strežnik, so na straneh dokumentacije." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Ustvari skrbniški račun" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Napredne možnosti" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Podatkovna mapa" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Nastavi podatkovno zbirko" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "bo uporabljen" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Uporabnik podatkovne zbirke" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Geslo podatkovne zbirke" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Ime podatkovne zbirke" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Razpredelnica podatkovne zbirke" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Gostitelj podatkovne zbirke" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Končaj namestitev" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "spletne storitve pod vašim nadzorom" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Odjava" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Samodejno prijavljanje je zavrnjeno!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "V primeru, da gesla za dostop že nekaj časa niste spremenili, je račun lahko ogrožen!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Spremenite geslo za izboljšanje zaščite računa." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Ali ste pozabili geslo?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "zapomni si" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Prijava" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Druge prijavne možnosti" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "nazaj" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "naprej" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno." +msgstr "" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index ed72760083..8128a63c83 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mateju <>, 2012 -# mateju <>, 2013 -# Peter Peroša , 2012 -# Peter Peroša , 2012 -# urossolar , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -25,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Ni mogoče premakniti %s - datoteka s tem imenom že obstaja" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Ni mogoče premakniti %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Ni mogoče preimenovati datoteke" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Ni poslane nobene datoteke. Neznana napaka." +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Datoteka je uspešno poslana." +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti v obrazcu HTML." +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Datoteka je le delno naložena" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Nobena datoteka ni bila naložena" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Manjka začasna mapa" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Pisanje na disk je spodletelo" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Na voljo ni dovolj prostora" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Neveljavna mapa." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Datoteke" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Souporaba" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Izbriši trajno" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Izbriši" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Preimenuj" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "V čakanju ..." +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} že obstaja" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "zamenjaj" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "predlagaj ime" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "prekliči" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "preimenovano ime {new_name} z imenom {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "razveljavi" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "izvedi opravilo brisanja" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "Pošiljanje 1 datoteke" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "poteka pošiljanje datotek" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' je neveljavno ime datoteke." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Ime datoteke ne sme biti prazno polje." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in usklajevati!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov." +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Na voljo ni dovolj prostora." +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Pošiljanje je preklicano." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Naslov URL ne sme biti prazna vrednost." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Napaka" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Ime" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Velikost" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Spremenjeno" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 mapa" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} map" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 datoteka" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} datotek" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Pošlji" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Upravljanje z datotekami" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Največja velikost za pošiljanja" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "največ mogoče:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Uporabljeno za prejem več datotek in map." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Omogoči prejemanje arhivov ZIP" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 predstavlja neomejeno vrednost" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Največja vhodna velikost za datoteke ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Shrani" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Nova" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Besedilna datoteka" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Mapa" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Iz povezave" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Izbrisane datoteke" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Prekliči pošiljanje" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Za to mesto ni ustreznih dovoljenj za pisanje." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Prejmi" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Odstrani iz souporabe" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Prekoračenje omejitve velikosti" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Poteka preučevanje datotek, počakajte ..." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Trenutno poteka preučevanje" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Nadgrajevanje predpomnilnika datotečnega sistema ..." +msgstr "" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 32f913f262..4e0da55bf6 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Matej Urbančič <>, 2013. -# Peter Peroša , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -22,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Šifriranje" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Šifriranje datotek je omogočeno." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Navedene vrste datotek ne bodo šifrirane:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Ne šifriraj navedenih vrst datotek:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Brez" +msgstr "" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 0d3f615d44..2d5c5609b9 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mateju <>, 2012 -# mateju <>, 2013 -# Peter Peroša , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -22,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Dostop je odobren" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Napaka nastavljanja shrambe Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Odobri dostop" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Vpisati je treba veljaven ključ programa in kodo za Dropbox" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Napaka nastavljanja shrambe Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ni mogoče." +msgstr "" #: lib/config.php:437 msgid "" @@ -62,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Zunanja podatkovna shramba" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Ime mape" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Zunanja shramba" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Nastavitve" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Možnosti" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Se uporablja" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Dodaj shrambo" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Ni nastavljeno" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Vsi uporabniki" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Skupine" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Uporabniki" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Izbriši" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Omogoči uporabniško zunanjo podatkovno shrambo" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Dovoli uporabnikom priklop lastne zunanje podatkovne shrambe" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Korenska potrdila SSL" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Uvozi korensko potrdilo" +msgstr "" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index cce3754070..4a9605eb80 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Peter Peroša , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Geslo" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Pošlji" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "Oseba %s je določila mapo %s za souporabo" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "Oseba %s je določila datoteko %s za souporabo" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Prejmi" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Predogled ni na voljo za" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "spletne storitve pod vašim nadzorom" +msgstr "" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 1c88a1cf01..0e9a889600 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -3,15 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mateju <>, 2013 -# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" -"PO-Revision-Date: 2013-04-19 17:02+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Datoteke %s ni mogoče dokončno izbrisati." +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Ni mogoče obnoviti %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "izvedi opravilo obnavljanja" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Napaka" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "dokončno izbriši datoteko" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Izbriši dokončno" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Ime" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Izbrisano" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 mapa" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} map" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 datoteka" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} datotek" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Mapa smeti je prazna." +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Obnovi" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Izbriši" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Izbrisane datoteke" +msgstr "" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 154d0ce088..cfe6078f15 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Matej Urbančič <>, 2013. -# Peter Peroša , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -23,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Ni mogoče povrniti: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "uspešno" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Datoteka %s je povrnjena na različico %s." +msgstr "" #: history.php:49 msgid "failure" -msgstr "spodletelo" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Datoteke %s ni mogoče povrniti na različico %s." +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Ni starejših različic." +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Ni določene poti" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Različice" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Povrni datoteko na predhodno različico s klikom na gumb za povrnitev." +msgstr "" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index bc51adf8f3..4d97cf7187 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mateju <>, 2012 -# mateju <>, 2013 -# Peter Peroša , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -22,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Pomoč" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Osebno" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Nastavitve" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Uporabniki" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Programi" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Skrbništvo" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Datoteke je mogoče prejeti le posamično." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Nazaj na datoteke" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "ni mogoče določiti" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Program ni omogočen" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Napaka overitve" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Žeton je potekel. Stran je treba ponovno naložiti." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Datoteke" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Besedilo" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Slike" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Nastavi uporabniško ime skrbnika." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Nastavi geslo skrbnika." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s - vnos uporabniškega imena podatkovne zbirke." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s - vnos imena podatkovne zbirke." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik." +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s - vnos gostitelja podatkovne zbirke." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Uporabniško ime ali geslo PostgreSQL ni veljavno" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Uporabniško ime ali geslo Oracle ni veljavno" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Uporabniško ime ali geslo MySQL ni veljavno" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Napaka podatkovne zbirke: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Napačni ukaz je: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Uporabnik MySQL '%s'@'localhost' že obstaja." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Odstrani uporabnika s podatkovne zbirke MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Uporabnik MySQL '%s'@'%%' že obstaja." +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Odstrani uporabnika s podatkovne zbirke MySQL" +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Uporabniško ime ali geslo MS SQL ni veljavno: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Preverite navodila namestitve." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "pred nekaj sekundami" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "pred minuto" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "pred %d minutami" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "Pred 1 uro" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "Pred %d urami" +msgstr "" #: template.php:118 msgid "today" -msgstr "danes" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "včeraj" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "pred %d dnevi" +msgstr "" #: template.php:121 msgid "last month" -msgstr "prejšnji mesec" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "Pred %d meseci" +msgstr "" #: template.php:123 msgid "last year" -msgstr "lansko leto" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "pred nekaj leti" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s je na voljo. Več podrobnosti." +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "posodobljeno" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "preverjanje za posodobitve je onemogočeno" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Kategorije \"%s\" ni mogoče najti." +msgstr "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 4d90df69ff..2bed5c5f20 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mateju <>, 2013 -# mateju <>, 2012 -# mateju <>, 2013 -# Peter Peroša , 2012 -# Peter Peroša , 2012-2013 -# urossolar , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -25,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Ni mogoče naložiti seznama iz središča App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Napaka overitve" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -38,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Prikazanega imena ni mogoče spremeniti." +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Skupina že obstaja" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Skupine ni mogoče dodati" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Programa ni mogoče omogočiti." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Elektronski naslov je shranjen" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Neveljaven elektronski naslov" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Skupine ni mogoče izbrisati" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Uporabnika ni mogoče izbrisati" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Jezik je spremenjen" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Neveljavna zahteva" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Skrbnikov ni mogoče odstraniti iz skupine skrbnikov (admin)" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Uporabnika ni mogoče dodati k skupini %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Uporabnika ni mogoče odstraniti iz skupine %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Programa ni mogoče posodobiti." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Posodobi na {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Onemogoči" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Omogoči" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Počakajte ..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Napaka" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Poteka posodabljanje ..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Prišlo je do napake med posodabljanjem programa." +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Posodobljeno" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Poteka shranjevanje ..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "izbrisano" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "razveljavi" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Uporabnika ni mogoče odstraniti" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Skupine" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Skrbnik skupine" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Izbriši" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "dodaj skupino" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Navedeno mora biti veljavno uporabniško ime" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Napaka ustvarjanja uporabnika" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Navedeno mora biti veljavno geslo" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Slovenščina" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Varnostno opozorilo" +msgstr "" #: templates/admin.php:18 msgid "" @@ -186,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud, namreč ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da mapa podatkov ne bo javno dostopna, ali pa, da jo prestavite v podrejeno mapo korenske mape spletnega strežnika." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Opozorilo nastavitve" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Preverite navodila namestitve." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Manjka modul 'fileinfo'." +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Jezikovne prilagoditve ne delujejo." +msgstr "" #: templates/admin.php:63 #, php-format @@ -223,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Na strežniku ownCloud ni mogoče nastaviti jezikovnih določil na jezik %s. Najverjetneje so težave s posebnimi znaki v imenih datotek. Priporočljivo je namestiti zahtevane pakete za podporo jeziku %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Internetna povezava ne deluje." +msgstr "" #: templates/admin.php:78 msgid "" @@ -237,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Strežnik ownCloud je brez delujoče internetne povezave. To pomeni, da bodo nekatere možnosti onemogočene. Ne bo mogoče priklapljati zunanjih priklopnih točk, ne bo obvestil o posodobitvah ali namestitvah programske opreme, prav tako najverjetneje ne bo mogoče pošiljati obvestilnih sporočil preko elektronske pošte. Za uporabo vseh zmožnosti oblaka ownCloud, mora biti internetna povezava vzpostavljena in delujoča." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Periodično opravilo" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Izvedi eno nalogo z vsako naloženo stranjo." +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "Datoteka cron.php je vpisana pri storitvi webcron. Preko protokola HTTP je datoteka cron.php, ki se nahaja v korenski mapi ownCloud, klicana enkrat na minuto." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Uporaba sistemske storitve cron. Preko sistemskega posla cron je datoteka cron.php, ki se nahaja v mapi ownCloud, klicana enkrat na minuto." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Souporaba" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Omogoči API souporabe" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Dovoli programom uporabo vmesnika API souporabe" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Dovoli povezave" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Uporabnikom dovoli souporabo predmetov z javnimi povezavami" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Dovoli nadaljnjo souporabo" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Uporabnikom dovoli nadaljnjo souporabo predmetov" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Uporabnikom dovoli souporabo s komerkoli" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Varnost" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Zahtevaj uporabo HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Zahtevaj šifrirano povezovanje odjemalcev v oblak ownCloud" +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Prijava mora biti vzpostavljena z uporabo protokola HTTPS za omogočanje šifriranja SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Dnevnik" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Raven beleženja" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Več" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Manj" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Različica" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -342,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Programski paket razvija skupnost ownCloud. Izvorna koda je objavljena pod pogoji AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Dodaj program" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Več programov" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Izbor programa" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Obiščite spletno stran programa na apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-z dovoljenjem " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Posodobi" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Uporabniška dokumentacija" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Skrbniška dokumentacija" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Spletna dokumentacija" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Sledilnik hroščev" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Podpora strankam" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Uporabljenega je %s od razpoložljivih %s prostora." +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Pridobi programe za usklajevanje datotek" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Zaženi čarovnika prvega zagona" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Geslo" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Geslo je spremenjeno" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Gesla ni mogoče spremeniti." +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Trenutno geslo" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Novo geslo" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Spremeni geslo" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Prikazano ime" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Elektronska pošta" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Osebni elektronski naslov" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Jezik" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Sodelujte pri prevajanju" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud." +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Prijavno ime" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Ustvari" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Privzeta shramba" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Neomejeno" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Drugo" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Shramba" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "spremeni prikazano ime" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "nastavi novo geslo" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Privzeto" +msgstr "" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index d291effd85..d067111916 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Matej Urbančič <>, 2013. -# Peter Peroša , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -22,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Brisanje nastavitev strežnika je spodletelo." +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Nastavitev je veljavna, zato je povezavo mogoče vzpostaviti!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Nastavitev je veljavna, vendar pa je vez Bind spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Nastavitev je veljavna. Več podrobnosti je zapisanih v dnevniku ownCloud." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Brisanje je spodletelo." +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Ali naj se prevzame nastavitve nedavne nastavitve strežnika?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Ali nas se nastavitve ohranijo?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Ni mogoče dodati nastavitev strežnika" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Preizkus povezave je uspešno končan." +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Preizkus povezave je spodletel." +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Ali res želite izbrisati trenutne nastavitve strežnika?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Potrdi brisanje" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Opozorilo: možnosti user_ldap in user_webdavauth nista združljivi. Pri uporabi je mogoče nepričakovano obnašanje sistema. Eno izmed možnosti je priporočeno onemgočiti." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Opozorilo: modul PHP LDAP mora biti nameščen, sicer vmesnik ne bo deloval. Paket je treba namestiti." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Nastavitev strežnika" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Dodaj nastavitve strežnika" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Gostitelj" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Protokol je lahko izpuščen, če ni posebej zahtevan SSL. V tem primeru se mora naslov začeti z ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Osnovni DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "En osnovni DN na vrstico" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Osnovni DN za uporabnike in skupine lahko določite v zavihku naprednih možnosti." +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Uporabnik DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN uporabnikovega odjemalca, s katerim naj se opravi vezava, npr. uid=agent,dc=example,dc=com. Za brezimni dostop sta polji DN in geslo prazni." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Geslo" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Za brezimni dostop sta polji DN in geslo prazni." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filter prijav uporabnikov" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Določi filter, uporabljen pri prijavi. %%uid nadomesti uporabniško ime v postopku prijave." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "Uporabite vsebnik %%uid, npr. \"uid=%%uid\"." +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Filter seznama uporabnikov" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Določi filter za uporabo med pridobivanjem uporabnikov." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "Brez kateregakoli vsebnika, npr. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Filter skupin" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Določi filter za uporabo med pridobivanjem skupin." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "Brez katerekoli vsebnika, npr. \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Nastavitve povezave" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Dejavna nastavitev" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Neizbrana možnost preskoči nastavitev." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Vrata" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Varnostna kopija (replika) podatkov gostitelja" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Podati je treba izbirno varnostno kopijo gostitelja. Ta mora biti natančna replika strežnika LDAP/AD." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Varnostna kopija (replika) podatka vrat" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Onemogoči glavni strežnik" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Ob priklopu bo strežnik ownCloud povezan le s kopijo (repliko) strežnika." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Uporabi TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Strežnika ni priporočljivo uporabljati za povezave LDAPS. Povezava bo spodletela." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Strežnik LDAP ne upošteva velikosti črk (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Onemogoči določanje veljavnosti potrdila SSL." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Kadar deluje povezava le s to možnostjo, uvozite potrdilo SSL iz strežnika LDAP na vaš strežnik ownCloud." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Dejanje ni priporočeno; uporabljeno naj bo le za preizkušanje delovanja." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Predpomni podatke TTL" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "v sekundah. Sprememba izprazni predpomnilnik." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Nastavitve mape" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Polje za uporabnikovo prikazano ime" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atribut LDAP, uporabljen pri ustvarjanju uporabniških imen ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Osnovno uporabniško drevo" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Eno osnovno uporabniško ime DN na vrstico" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Uporabi atribute iskanja" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Izbirno; en atribut na vrstico" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Polje za prikazano ime skupine" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atribut LDAP, uporabljen pri ustvarjanju imen skupin ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Osnovno drevo skupine" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Eno osnovno ime skupine DN na vrstico" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atributi iskanja skupine" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Povezava član-skupina" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Posebni atributi" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Polje količinske omejitve" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Privzeta količinska omejitev" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "v bajtih" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Polje elektronske pošte" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Pravila poimenovanja uporabniške osebne mape" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Pustite prazno za uporabniško ime (privzeto), sicer navedite atribut LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Preizkusne nastavitve" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Pomoč" +msgstr "" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index cd69913173..46d7cb78c8 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -21,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Përdoruesi %s ndau me ju një skedar" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Përdoruesi %s ndau me ju një dosje" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Përdoruesi %s ndau me ju skedarin \"%s\". Ky skedar është gati për shkarkim nga këtu: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Përdoruesi %s ndau me ju dosjen \"%s\". Kjo dosje është gati për shkarkim nga këto: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Mungon tipi i kategorisë." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Asnjë kategori për të shtuar?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Kjo kategori tashmë ekziston: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Mungon tipi i objektit." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "Mungon ID-ja e %s." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Veprim i gabuar gjatë shtimit të %s tek të parapëlqyerat." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Nuk selektuar për tu eliminuar asnjë kategori." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Veprim i gabuar gjatë heqjes së %s nga të parapëlqyerat." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "E djelë" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "E hënë" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "E martë" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "E mërkurë" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "E enjte" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "E premte" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "E shtunë" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Janar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Shkurt" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Mars" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Prill" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maj" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Qershor" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Korrik" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Gusht" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Shtator" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Tetor" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Nëntor" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Dhjetor" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Parametrat" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sekonda më parë" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minutë më parë" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minuta më parë" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 orë më parë" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} orë më parë" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "sot" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "dje" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} ditë më parë" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "muajin e shkuar" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} muaj më parë" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "muaj më parë" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "vitin e shkuar" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "vite më parë" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Në rregull" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Anulo" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Zgjidh" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Po" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Jo" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Nuk është specifikuar tipi i objektit." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -244,363 +243,363 @@ msgstr "Nuk është specifikuar tipi i objektit." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Veprim i gabuar" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Nuk është specifikuar emri i app-it." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Skedari i nevojshëm {file} nuk është i instaluar!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Ndarë" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Nda" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Veprim i gabuar gjatë ndarjes" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Veprim i gabuar gjatë heqjes së ndarjes" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Veprim i gabuar gjatë ndryshimit të lejeve" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Ndarë me ju dhe me grupin {group} nga {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Ndarë me ju nga {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Nda me" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Nda me lidhje" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Mbro me kod" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Kodi" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Dërgo email me lidhjen" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Dërgo" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Cakto datën e përfundimit" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Data e përfundimit" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Nda me email:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Nuk u gjet asnjë person" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Rindarja nuk lejohet" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Ndarë në {item} me {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Hiq ndarjen" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "mund të ndryshosh" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "kontrollimi i hyrjeve" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "krijo" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "azhurno" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "elimino" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "nda" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Mbrojtur me kod" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Duke dërguar..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Email-i u dërgua" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem komunitetin ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Azhurnimi u krye. Tani do t'ju kaloj tek ownCloud-i." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Rivendosja e kodit të ownCloud-it" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Përdorni lidhjen në vijim për të rivendosur kodin: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Emaili i rivendosjes u dërgua." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Kërkesa dështoi!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Përdoruesi" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Bëj kërkesë për rivendosjen" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Kodi yt u rivendos" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Tek faqja e hyrjes" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Kodi i ri" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Rivendos kodin" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personale" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Përdoruesit" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "App" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Ndihmë" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Ndalohet hyrja" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud-i nuk u gjet" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Ndrysho kategoritë" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Shto" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Paralajmërim sigurie" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Versioni juaj i PHP-së është i cënueshëm nga sulmi NULL Byte (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Ju lutem azhurnoni instalimin tuaj të PHP-së që të përdorni ownCloud-in në mënyrë të sigurt." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Nuk disponohet asnjë krijues numrash të rastësishëm, ju lutem aktivizoni shtesën PHP OpenSSL." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Pa një krijues numrash të rastësishëm të sigurt një person i huaj mund të jetë në gjendje të parashikojë kodin dhe të marri llogarinë tuaj." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Dosja dhe skedarët e të dhënave tuaja mbase janë të arritshme nga interneti sepse skedari .htaccess nuk po punon." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, ju lutem shikoni dokumentacionin." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Krijo një llogari administruesi" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Të përparuara" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Emri i dosjes" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Konfiguro database-in" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "do të përdoret" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Përdoruesi i database-it" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Kodi i database-it" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Emri i database-it" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Tablespace-i i database-it" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Pozicioni (host) i database-it" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Mbaro setup-in" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "shërbime web nën kontrollin tënd" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Dalje" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Hyrja automatike u refuzua!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Nqse nuk keni ndryshuar kodin kohët e fundit, llogaria juaj mund të jetë komprometuar." +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Ju lutemi, ndryshoni kodin për ta siguruar përsëri llogarinë tuaj." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Ke humbur kodin?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "kujto" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Hyrje" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Hyrje alternative" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "mbrapa" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "para" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Po azhurnoj ownCloud-in me versionin %s. Mund të zgjasi pak." +msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 09c1dbbe3a..d6ddb5512c 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -21,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s nuk u spostua" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Nuk është i mundur riemërtimi i skedarit" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Nuk pati veprime të gabuara, skedari u ngarkua me sukses" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Skedari i ngarkuar tejkalon udhëzimin upload_max_filesize tek php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Skedari i ngarkuar tejkalon udhëzimin MAX_FILE_SIZE të specifikuar në formularin HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Skedari i ngarkuar u ngarkua vetëm pjesërisht" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Nuk u ngarkua asnjë skedar" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Një dosje e përkohshme nuk u gjet" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Ruajtja në disk dështoi" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Nuk ka mbetur hapësirë memorizimi e mjaftueshme" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Dosje e pavlefshme." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Skedarët" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Nda" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Elimino përfundimisht" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Elimino" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Riemërto" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Pezulluar" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} ekziston" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "zëvëndëso" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "sugjero një emër" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "anulo" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "U zëvëndësua {new_name} me {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "anulo" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "ekzekuto operacionin e eliminimit" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "Po ngarkohet 1 skedar" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "po ngarkoj skedarët" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' është emër i pavlefshëm." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Emri i skedarit nuk mund të jetë bosh." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Emër i pavlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Hapësira juaj e memorizimit është plot, nuk mund të ngarkoni apo sinkronizoni më skedarët." +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Hapësira juaj e memorizimit është gati plot ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nuk është i mundur ngarkimi i skedarit tuaj sepse është dosje ose ka dimension 0 byte" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Nuk ka hapësirë memorizimi e mjaftueshme" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Ngarkimi u anulua." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Ngarkimi i skedarit është në vazhdim. Nqse ndërroni faqen tani ngarkimi do të anulohet." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL-i nuk mund të jetë bosh." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Veprim i gabuar" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Emri" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Dimensioni" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Modifikuar" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 dosje" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} dosje" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 skedar" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} skedarë" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Ngarko" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Trajtimi i skedarit" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Dimensioni maksimal i ngarkimit" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "maks. i mundur:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Duhet për shkarkimin e dosjeve dhe të skedarëve" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Aktivizo shkarkimin e ZIP-eve" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 është i pakufizuar" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Dimensioni maksimal i ngarkimit të skedarëve ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Ruaj" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "I ri" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Skedar teksti" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Dosje" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Nga lidhja" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Skedarë të eliminuar" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Anulo ngarkimin" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Nuk keni të drejta për të shkruar këtu." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Këtu nuk ka asgjë. Ngarkoni diçka!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Shkarko" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Hiq ndarjen" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Ngarkimi është shumë i madh" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Skedarët po analizohen, ju lutemi pritni." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Analizimi aktual" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Po përmirësoj memorjen e filesystem-it..." +msgstr "" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index 7dbf902707..bccdde2ed2 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 432e33124c..9c5b0da666 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -99,12 +99,12 @@ msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Përdoruesit" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Elimino" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 9b729426c3..3271a62902 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Kodi" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Parashtro" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s ndau me ju dosjen %s" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s ndau me ju skedarin %s" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Shkarko" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Shikimi paraprak nuk është i mundur për" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "shërbime web nën kontrollin tënd" +msgstr "" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index a2e6c8176a..93ccb26b9b 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Nuk munda ta eliminoj përfundimisht %s" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Nuk munda ta rivendos %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "ekzekuto operacionin e rivendosjes" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Veprim i gabuar" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "eliminoje përfundimisht skedarin" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Elimino përfundimisht" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Emri" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Eliminuar" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 dosje" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} dosje" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 skedar" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} skedarë" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Këtu nuk ka asgjë. Koshi juaj është bosh!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Rivendos" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Elimino" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Skedarë të eliminuar" +msgstr "" diff --git a/l10n/sq/files_versions.po b/l10n/sq/files_versions.po index a2ce9ffe2b..4520df0880 100644 --- a/l10n/sq/files_versions.po +++ b/l10n/sq/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 9629d1e79c..97eb3e6d0a 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -20,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Ndihmë" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personale" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Parametrat" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Përdoruesit" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "App" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Skedarët duhet të shkarkohen një nga një." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Kthehu tek skedarët" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Skedarët e selektuar janë shumë të mëdhenj për të krijuar një skedar ZIP." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "nuk u vendos dot" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Programi nuk është i aktivizuar." +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Skedarët" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Tekst" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Foto" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Cakto emrin e administratorit." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Cakto kodin e administratorit." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "% shkruani përdoruesin e database-it." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s shkruani emrin e database-it." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s nuk mund të përdorni pikat tek emri i database-it" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s caktoni pozicionin (host) e database-it." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "Përdoruesi dhe/apo kodi i PostgreSQL i pavlefshëm" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "Përdoruesi dhe/apo kodi i MySQL-it i pavlefshëm." - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Veprim i gabuar i DB-it: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Komanda e gabuar ishte: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Përdoruesi MySQL '%s'@'localhost' ekziston." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Eliminoni këtë përdorues nga MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Përdoruesi MySQL '%s'@'%%' ekziston" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Eliminoni këtë përdorues nga MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Përdoruesi dhe/apo kodi i MS SQL i pavlefshëm: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sekonda më parë" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minutë më parë" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minuta më parë" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 orë më parë" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d orë më parë" +msgstr "" #: template.php:118 msgid "today" -msgstr "sot" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "dje" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d ditë më parë" +msgstr "" #: template.php:121 msgid "last month" -msgstr "muajin e shkuar" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d muaj më parë" +msgstr "" #: template.php:123 msgid "last year" -msgstr "vitin e shkuar" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "vite më parë" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s është i disponueshëm. Informohuni këtu" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "i azhornuar" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "kontrollimi i azhurnimeve është i çaktivizuar" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Kategoria \"%s\" nuk u gjet" +msgstr "" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index eaad4534ed..4a319d69b9 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -25,7 +24,7 @@ msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -107,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Veprim i gabuar" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -131,7 +130,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "anulo" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -148,7 +147,7 @@ msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Elimino" +msgstr "" #: js/users.js:262 msgid "add group" @@ -172,7 +171,7 @@ msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Paralajmërim sigurie" +msgstr "" #: templates/admin.php:18 msgid "" @@ -191,12 +190,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -361,7 +360,7 @@ msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Azhurno" +msgstr "" #: templates/help.php:4 msgid "User Documentation" @@ -394,7 +393,7 @@ msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Merrni app-et për sinkronizimin e skedarëve tuaj" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" @@ -402,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Kodi" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -418,7 +417,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Kodi i ri" +msgstr "" #: templates/personal.php:44 msgid "Change password" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index ff91215d0a..9fbb11d7d4 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Kodi" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Ndihmë" +msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 334a75c0be..5ed39da6cf 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivan Petrović , 2012-2013 -# Kostic , 2012 -# Slobodan Terzić , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -23,12 +20,12 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Корисник %s дели са вама датотеку" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Корисник %s дели са вама директоријум" +msgstr "" #: ajax/share.php:101 #, php-format @@ -46,11 +43,11 @@ msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Врста категорије није унет." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Додати још неку категорију?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -61,184 +58,184 @@ msgstr "" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Врста објекта није унета." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ИД нису унети." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Грешка приликом додавања %s у омиљене." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Ни једна категорија није означена за брисање." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Грешка приликом уклањања %s из омиљених" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Недеља" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Понедељак" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Уторак" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Среда" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Четвртак" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Петак" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Субота" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Јануар" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Фебруар" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Март" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Април" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Мај" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Јун" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Јул" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Август" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Септембар" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Октобар" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Новембар" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Децембар" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Подешавања" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "пре неколико секунди" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "пре 1 минут" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "пре {minutes} минута" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "Пре једног сата" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "Пре {hours} сата (сати)" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "данас" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "јуче" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "пре {days} дана" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "прошлог месеца" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "Пре {months} месеца (месеци)" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "месеци раније" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "прошле године" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "година раније" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "У реду" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Откажи" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Одабери" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Да" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Не" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Врста објекта није подешена." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -246,15 +243,15 @@ msgstr "Врста објекта није подешена." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Име програма није унето." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Потребна датотека {file} није инсталирана." +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -262,43 +259,43 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Дељење" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Грешка у дељењу" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Грешка код искључења дељења" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Грешка код промене дозвола" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Дељено са вама и са групом {group}. Поделио {owner}." +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Поделио са вама {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Подели са" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Подели линк" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Заштићено лозинком" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Лозинка" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -306,79 +303,79 @@ msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Пошаљи" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Постави датум истека" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Датум истека" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Подели поштом:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Особе нису пронађене." +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Поновно дељење није дозвољено" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Подељено унутар {item} са {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Не дели" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "може да мења" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "права приступа" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "направи" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "ажурирај" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "обриши" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "подели" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Заштићено лозинком" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Грешка код поништавања датума истека" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Грешка код постављања датума истека" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Шаљем..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Порука је послата" +msgstr "" #: js/update.js:14 msgid "" @@ -393,89 +390,89 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Поништавање лозинке за ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Овом везом ресетујте своју лозинку: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Добићете везу за ресетовање лозинке путем е-поште." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Захтев је послат поштом." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Захтев одбијен!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Корисничко име" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Захтевај ресетовање" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Ваша лозинка је ресетована" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "На страницу за пријаву" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Нова лозинка" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Ресетуј лозинку" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Лична" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Корисници" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Програми" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Аднинистрација" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Помоћ" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Забрањен приступ" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Облак није нађен" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Измени категорије" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Додај" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Сигурносно упозорење" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -489,13 +486,13 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Поуздан генератор случајних бројева није доступан, предлажемо да укључите PHP проширење OpenSSL." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Без поузданог генератора случајнох бројева нападач лако може предвидети лозинку за поништавање кључа шифровања и отети вам налог." +msgstr "" #: templates/installation.php:39 msgid "" @@ -512,83 +509,83 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Направи административни налог" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Напредно" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Фацикла података" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Подешавање базе" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "ће бити коришћен" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Корисник базе" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Лозинка базе" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Име базе" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Радни простор базе података" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Домаћин базе" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Заврши подешавање" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "веб сервиси под контролом" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Одјава" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Аутоматска пријава је одбијена!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Ако ускоро не промените лозинку ваш налог може бити компромитован!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Промените лозинку да бисте обезбедили налог." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Изгубили сте лозинку?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "упамти" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Пријава" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -596,13 +593,13 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "претходно" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "следеће" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Надоградња ownCloud-а на верзију %s, сачекајте тренутак." +msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 6b3cb41cdf..6f3382397d 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivan Petrović , 2012 -# Slobodan Terzić , 2011, 2012 -# Rancher , 2013 -# Rancher , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -24,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Не могу да преместим %s – датотека с овим именом већ постоји" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Не могу да преместим %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Не могу да преименујем датотеку" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Ниједна датотека није отпремљена услед непознате грешке" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Није дошло до грешке. Датотека је успешно отпремљена." +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Датотека је делимично отпремљена" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Датотека није отпремљена" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Недостаје привремена фасцикла" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Не могу да пишем на диск" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Нема довољно простора" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "неисправна фасцикла." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Датотеке" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Дели" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Обриши за стално" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Обриши" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Преименуј" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "На чекању" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} већ постоји" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "замени" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "предложи назив" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "откажи" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "замењено {new_name} са {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "опозови" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "обриши" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "Отпремам 1 датотеку" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "датотеке се отпремају" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "Датотека „.“ је неисправног имена." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Име датотеке не може бити празно." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване." +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Ваше складиште је скоро па пуно ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Нема довољно простора" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Отпремање је прекинуто." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "Адреса не може бити празна." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Назив" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Величина" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Измењено" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 фасцикла" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} фасцикле/и" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 датотека" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} датотеке/а" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Отпреми" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Управљање датотекама" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Највећа величина датотеке" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "највећа величина:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Неопходно за преузимање вишеделних датотека и фасцикли." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Омогући преузимање у ZIP-у" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 је неограничено" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Највећа величина ZIP датотека" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Сачувај" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Нова" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "текстуална датотека" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "фасцикла" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Са везе" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Обрисане датотеке" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Прекини отпремање" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Овде немате дозволу за писање." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Овде нема ничег. Отпремите нешто!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Преузми" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Укини дељење" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Датотека је превелика" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Скенирам датотеке…" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Тренутно скенирање" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Дограђујем кеш система датотека…" +msgstr "" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 2eae48fdc6..e76bef7dc0 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -21,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Шифровање" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -37,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ништа" +msgstr "" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 5a02fc725f..fbe0c151f1 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -95,16 +95,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Групе" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Корисници" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Обриши" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 8c455cac47..5a49fb23aa 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -19,11 +19,11 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Лозинка" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Пошаљи" +msgstr "" #: templates/public.php:10 #, php-format @@ -37,7 +37,7 @@ msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Преузми" +msgstr "" #: templates/public.php:40 msgid "No preview available for" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 69d8ab3bf2..df7f4942c7 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -30,11 +29,11 @@ msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "врати у претходно стање" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -42,43 +41,43 @@ msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Обриши за стално" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Име" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Обрисано" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 фасцикла" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} фасцикле/и" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 датотека" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} датотеке/а" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Овде нема ништа. Корпа за отпатке је празна." +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Врати" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Обриши" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index b878bee563..2c8b97da34 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 95f58fe7f5..ffceaa542c 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivan Petrović , 2012-2013 -# Rancher , 2013 -# Rancher , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -22,71 +19,71 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Помоћ" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Лично" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Поставке" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Корисници" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Апликације" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Администратор" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Преузимање ZIP-а је искључено." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Датотеке морате преузимати једну по једну." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Назад на датотеке" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Изабране датотеке су превелике да бисте направили ZIP датотеку." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "није одређено" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Апликација није омогућена" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Грешка при провери идентитета" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Жетон је истекао. Поново учитајте страницу." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Датотеке" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Текст" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Слике" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -116,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Погледајте водиче за инсталацију." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "пре неколико секунди" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "пре 1 минут" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "пре %d минута" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "пре 1 сат" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "пре %d сата/и" +msgstr "" #: template.php:118 msgid "today" -msgstr "данас" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "јуче" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "пре %d дана" +msgstr "" #: template.php:121 msgid "last month" -msgstr "прошлог месеца" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "пре %d месеца/и" +msgstr "" #: template.php:123 msgid "last year" -msgstr "прошле године" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "година раније" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s је доступна. Погледајте више информација." +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "је ажурна" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "провера ажурирања је онемогућена" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Не могу да пронађем категорију „%s“." +msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index c41107dad6..ca0d976fa2 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kostic , 2012 -# Slobodan Terzić , 2011, 2012 -# Rancher , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -22,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Грешка приликом учитавања списка из Складишта Програма" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Грешка при аутентификацији" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -35,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Не могу да променим име за приказ" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Група већ постоји" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Не могу да додам групу" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Не могу да укључим програм" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Е-порука сачувана" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Неисправна е-адреса" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Не могу да уклоним групу" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Не могу да уклоним корисника" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Језик је промењен" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Неисправан захтев" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Управници не могу себе уклонити из админ групе" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Не могу да додам корисника у групу %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Не могу да уклоним корисника из групе %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Не могу да ажурирам апликацију." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Ажурирај на {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Искључи" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Укључи" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Сачекајте…" +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Ажурирам…" +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Грешка при ажурирању апликације" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Ажурирано" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Чување у току..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "обрисано" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "опозови" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Не могу да уклоним корисника" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Групе" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Управник групе" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Обриши" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "додај групу" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Морате унети исправно корисничко име" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Грешка при прављењу корисника" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Морате унети исправну лозинку" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Сигурносно упозорење" +msgstr "" #: templates/admin.php:18 msgid "" @@ -183,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Тренутно су ваши подаци и датотеке доступне са интернета. Датотека .htaccess коју је обезбедио пакет ownCloud не функционише. Саветујемо вам да подесите веб сервер тако да директоријум са подацима не буде изложен или да га преместите изван коренског директоријума веб сервера." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Упозорење о подешавању" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Погледајте водиче за инсталацију." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Недостаје модул „fileinfo“" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Локализација не ради" +msgstr "" #: templates/admin.php:63 #, php-format @@ -224,7 +221,7 @@ msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Веза с интернетом не ради" +msgstr "" #: templates/admin.php:78 msgid "" @@ -242,7 +239,7 @@ msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Изврши један задатак са сваком учитаном страницом" +msgstr "" #: templates/admin.php:111 msgid "" @@ -258,52 +255,52 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Дељење" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Омогући API Share" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Дозвољава апликацијама да користе API Share" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Дозволи везе" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Дозволи корисницима да деле ставке с другима путем веза" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Дозволи поновно дељење" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Дозволи корисницима да поновно деле ставке с другима" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Дозволи корисницима да деле са било ким" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Безбедност" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Наметни HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе." +msgstr "" #: templates/admin.php:185 msgid "" @@ -313,23 +310,23 @@ msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Бележење" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Ниво бележења" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Више" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Мање" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Верзија" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -339,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Развијају Оунклауд (ownCloud) заједница, изворни код је издат под АГПЛ лиценцом." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Додајте ваш програм" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Више програма" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Изаберите програм" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Погледајте страницу са програмима на apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-лиценцирао " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Ажурирај" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Корисничка документација" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Администраторска документација" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Мрежна документација" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Форум" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Праћење грешака" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Комерцијална подршка" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Искористили сте %s од дозвољених %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Преузмите апликације ради синхронизовања датотека" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Поново прикажи чаробњак за прво покретање" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Лозинка" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Лозинка је промењена" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Не могу да изменим вашу лозинку" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Тренутна лозинка" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Нова лозинка" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Измени лозинку" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Име за приказ" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Е-пошта" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Ваша адреса е-поште" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Ун" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Језик" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr " Помозите у превођењу" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Корисничко име" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Направи" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Подразумевано складиште" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Неограничено" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Друго" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Складиште" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "промени име за приказ" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "постави нову лозинку" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Подразумевано" +msgstr "" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 5ab18046b0..1022f29cf0 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -40,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Брисање није успело" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -93,16 +92,16 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Домаћин" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Можете да изоставите протокол, осим ако захтевате SSL. У том случају почните са ldaps://." +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "База DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" @@ -114,62 +113,62 @@ msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Корисник DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN корисника клијента са којим треба да се успостави веза, нпр. uid=agent,dc=example,dc=com. За анониман приступ, оставите поља DN и лозинка празним." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Лозинка" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "За анониман приступ, оставите поља DN и лозинка празним." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Филтер за пријаву корисника" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Одређује филтер за примењивање при покушају пријаве. %%uid замењује корисничко име." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "користите чувар места %%uid, нпр. „uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Филтер за списак корисника" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Одређује филтер за примењивање при прибављању корисника." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "без икаквог чувара места, нпр. „objectClass=person“." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Филтер групе" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Одређује филтер за примењивање при прибављању група." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "без икаквог чувара места, нпр. „objectClass=posixGroup“." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" @@ -185,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Порт" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -211,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Користи TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -219,21 +218,21 @@ msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP сервер осетљив на велика и мала слова (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Искључите потврду SSL сертификата." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Увезите SSL сертификат LDAP сервера у свој ownCloud ако веза ради само са овом опцијом." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Не препоручује се; користите само за тестирање." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -241,7 +240,7 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "у секундама. Промена испражњава кеш меморију." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" @@ -249,15 +248,15 @@ msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Име приказа корисника" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP атрибут за стварање имена ownCloud-а корисника." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Основно стабло корисника" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" @@ -273,15 +272,15 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Име приказа групе" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP атрибут за стварање имена ownCloud-а групе." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Основна стабло група" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" @@ -293,7 +292,7 @@ msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Придруживање чланова у групу" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -309,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "у бајтовима" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -331,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Помоћ" +msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index e3b9468ad2..923d5f2350 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Slobodan Terzić , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -83,83 +82,83 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Nedelja" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Ponedeljak" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Utorak" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Sreda" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Četvrtak" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Petak" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Subota" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januar" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februar" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Mart" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "April" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maj" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Jun" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Jul" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Avgust" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Septembar" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktobar" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Novembar" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Decembar" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Podešavanja" +msgstr "" #: js/js.js:718 msgid "seconds ago" @@ -219,7 +218,7 @@ msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Otkaži" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" @@ -294,9 +293,9 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Lozinka" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -399,7 +398,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Dobićete vezu za resetovanje lozinke putem e-pošte." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -410,17 +409,17 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" -msgstr "Korisničko ime" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Zahtevaj resetovanje" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Vaša lozinka je resetovana" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -428,31 +427,31 @@ msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nova lozinka" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Resetuj lozinku" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Lična" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Korisnici" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Programi" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Adninistracija" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Pomoć" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" @@ -460,7 +459,7 @@ msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Oblak nije nađen" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -510,49 +509,49 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Napravi administrativni nalog" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Napredno" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Facikla podataka" +msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" -msgstr "Podešavanje baze" +msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" -msgstr "će biti korišćen" +msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" -msgstr "Korisnik baze" +msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" -msgstr "Lozinka baze" +msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" -msgstr "Ime baze" +msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" -msgstr "Domaćin baze" +msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" -msgstr "Završi podešavanje" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" @@ -560,45 +559,45 @@ msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Odjava" +msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" -msgstr "Izgubili ste lozinku?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" #: templates/login.php:41 -msgid "remember" -msgstr "upamti" - -#: templates/login.php:43 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "prethodno" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "sledeće" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 9d672c481c..93695903af 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Slobodan Terzić , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -38,7 +37,7 @@ msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Nema greške, fajl je uspešno poslat" +msgstr "" #: ajax/upload.php:27 msgid "" @@ -49,19 +48,19 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Poslati fajl je samo delimično otpremljen!" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Nijedan fajl nije poslat" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Nedostaje privremena fascikla" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" @@ -77,7 +76,7 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Fajlovi" +msgstr "" #: js/fileactions.js:116 msgid "Share" @@ -89,7 +88,7 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Obriši" +msgstr "" #: js/fileactions.js:194 msgid "Rename" @@ -194,15 +193,15 @@ msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Ime" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Veličina" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Zadnja izmena" +msgstr "" #: js/files.js:893 msgid "1 folder" @@ -222,7 +221,7 @@ msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Pošalji" +msgstr "" #: templates/admin.php:5 msgid "File handling" @@ -230,7 +229,7 @@ msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksimalna veličina pošiljke" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " @@ -254,7 +253,7 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Snimi" +msgstr "" #: templates/index.php:7 msgid "New" @@ -286,11 +285,11 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Ovde nema ničeg. Pošaljite nešto!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Preuzmi" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" @@ -298,13 +297,13 @@ msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Pošiljka je prevelika" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 9eb93b9f93..457c34823a 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 5a21c306fe..244170547f 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -95,16 +95,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupe" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Korisnici" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Obriši" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 778a78eb8c..60a41c81d7 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 5743501ec1..26aef74d53 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Ime" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Obriši" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index 7e54c05a93..2f888ae0aa 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 2cc4b44f0f..424b5db04f 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -19,19 +19,19 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Pomoć" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Lično" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Podešavanja" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Korisnici" +msgstr "" #: app.php:398 msgid "Apps" @@ -39,7 +39,7 @@ msgstr "" #: app.php:406 msgid "Admin" -msgstr "Adninistracija" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." @@ -67,7 +67,7 @@ msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Greška pri autentifikaciji" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,11 +75,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Fajlovi" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Tekst" +msgstr "" #: search/provider/file.php:29 msgid "Images" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index b274df34bb..c13564c481 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Slobodan Terzić , 2011 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -25,7 +24,7 @@ msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Greška pri autentifikaciji" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -65,11 +64,11 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Jezik je izmenjen" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Neispravan zahtev" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -140,7 +139,7 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupe" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" @@ -148,7 +147,7 @@ msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Obriši" +msgstr "" #: js/users.js:262 msgid "add group" @@ -349,7 +348,7 @@ msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Izaberite program" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" @@ -402,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Lozinka" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -410,19 +409,19 @@ msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Ne mogu da izmenim vašu lozinku" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Trenutna lozinka" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nova lozinka" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Izmeni lozinku" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -430,7 +429,7 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-mail" +msgstr "" #: templates/personal.php:70 msgid "Your email address" @@ -442,7 +441,7 @@ msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Jezik" +msgstr "" #: templates/personal.php:84 msgid "Help translate" @@ -462,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Napravi" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -474,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Drugo" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 19f25b81a0..cb17652078 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Pomoć" +msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 8db740580a..2fd051692e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Lokal_Profil , 2013 -# Christer Eriksson , 2012 -# Daniel Sandman , 2012 -# HakanS , 2011 -# Magnus Höglund , 2012-2013 -# Magnus Höglund , 2012 -# Daniel Sandman , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -27,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Användare %s delade en fil med dig" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Användare %s delade en mapp med dig" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Användare %s delade filen \"%s\" med dig. Den finns att ladda ner här: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Användare %s delade mappen \"%s\" med dig. Den finns att ladda ner här: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Kategorityp inte angiven." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Ingen kategori att lägga till?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Denna kategori finns redan: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Objekttyp inte angiven." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID inte angiven." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Fel vid tillägg av %s till favoriter." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Inga kategorier valda för radering." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Fel vid borttagning av %s från favoriter." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Söndag" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Måndag" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Tisdag" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Onsdag" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Torsdag" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Fredag" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Lördag" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Januari" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Februari" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Mars" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "April" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Maj" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Juni" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Juli" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Augusti" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "September" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Oktober" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "November" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "December" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Inställningar" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "sekunder sedan" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 minut sedan" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} minuter sedan" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 timme sedan" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} timmar sedan" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "i dag" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "i går" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} dagar sedan" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "förra månaden" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} månader sedan" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "månader sedan" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "förra året" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "år sedan" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Avbryt" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Välj" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Ja" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Nej" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Objekttypen är inte specificerad." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -250,363 +243,363 @@ msgstr "Objekttypen är inte specificerad." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Fel" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr " Namnet på appen är inte specificerad." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Den nödvändiga filen {file} är inte installerad!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Delad" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Dela" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Fel vid delning" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Fel när delning skulle avslutas" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Fel vid ändring av rättigheter" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Delad med dig och gruppen {group} av {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Delad med dig av {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Delad med" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Delad med länk" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Lösenordsskydda" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Lösenord" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "E-posta länk till person" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Skicka" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Sätt utgångsdatum" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Utgångsdatum" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Dela via e-post:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Hittar inga användare" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Dela vidare är inte tillåtet" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Delad i {item} med {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Sluta dela" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "kan redigera" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "åtkomstkontroll" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "skapa" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "uppdatera" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "radera" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "dela" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Lösenordsskyddad" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Fel vid borttagning av utgångsdatum" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Fel vid sättning av utgångsdatum" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Skickar ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "E-post skickat" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Uppdateringen misslyckades. Rapportera detta problem till ownCloud-gemenskapen." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud" +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud lösenordsåterställning" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Använd följande länk för att återställa lösenordet: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Du får en länk att återställa ditt lösenord via e-post." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Återställ skickad e-post." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Begäran misslyckades!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Användarnamn" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Begär återställning" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Ditt lösenord har återställts" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Till logginsidan" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Nytt lösenord" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Återställ lösenordet" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Personligt" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Användare" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Program" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Hjälp" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Åtkomst förbjuden" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Hittade inget moln" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Redigera kategorier" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Lägg till" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Säkerhetsvarning" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Uppdatera din PHP-installation för att använda ownCloud säkert." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Ingen säker slumptalsgenerator finns tillgänglig. Du bör aktivera PHP OpenSSL-tillägget." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Utan en säker slumptalsgenerator kan angripare få möjlighet att förutsäga lösenordsåterställningar och ta över ditt konto." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Din datakatalog och filer är förmodligen tillgängliga från Internet, eftersom .htaccess-filen inte fungerar." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "För information hur man korrekt konfigurera servern, var god se documentation." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Skapa ett administratörskonto" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Avancerat" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Datamapp" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Konfigurera databasen" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "kommer att användas" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Databasanvändare" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Lösenord till databasen" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Databasnamn" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Databas tabellutrymme" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Databasserver" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Avsluta installation" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "webbtjänster under din kontroll" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Logga ut" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatisk inloggning inte tillåten!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Om du inte har ändrat ditt lösenord nyligen så kan ditt konto vara manipulerat!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Ändra genast lösenord för att säkra ditt konto." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Glömt ditt lösenord?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "kom ihåg" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Logga in" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternativa inloggningar" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "föregående" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "nästa" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Uppdaterar ownCloud till version %s, detta kan ta en stund." +msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index fd1d84fb38..bc59944112 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Lokal_Profil , 2013 -# Christer Eriksson , 2012 -# Daniel Sandman , 2012 -# Magnus Höglund , 2012-2013 -# Magnus Höglund , 2012 -# Daniel Sandman , 2011, 2012 -# tscooter , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -27,115 +20,115 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Kunde inte flytta %s - Det finns redan en fil med detta namn" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Kan inte flytta %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Kan inte byta namn på filen" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Ingen fil uppladdad. Okänt fel" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Inga fel uppstod. Filen laddades upp utan problem" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Den uppladdade filen var endast delvis uppladdad" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Ingen fil blev uppladdad" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Saknar en tillfällig mapp" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Misslyckades spara till disk" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Felaktig mapp." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Filer" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Dela" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Radera permanent" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Radera" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Byt namn" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Väntar" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} finns redan" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "ersätt" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "föreslå namn" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "avbryt" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "ersatt {new_name} med {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "ångra" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "utför raderingen" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 filuppladdning" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -143,183 +136,183 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' är ett ogiltigt filnamn." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Filnamn kan inte vara tomt." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ditt lagringsutrymme är fullt, filer kan ej längre laddas upp eller synkas!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes." +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Inte tillräckligt med utrymme tillgängligt" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Uppladdning avbruten." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL kan inte vara tom." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Fel" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Namn" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Storlek" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Ändrad" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 mapp" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} mappar" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 fil" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} filer" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Ladda upp" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Filhantering" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximal storlek att ladda upp" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "max. möjligt:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Krävs för nerladdning av flera mappar och filer." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Aktivera ZIP-nerladdning" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 är oändligt" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Största tillåtna storlek för ZIP-filer" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Spara" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Ny" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Textfil" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Mapp" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Från länk" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Raderade filer" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Avbryt uppladdning" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Du saknar skrivbehörighet här." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Ingenting här. Ladda upp något!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Ladda ner" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Sluta dela" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "För stor uppladdning" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Filer skannas, var god vänta" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Aktuell skanning" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Uppgraderar filsystemets cache..." +msgstr "" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index a1c717ce9f..e85528261a 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André , 2013. -# Magnus Höglund , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Kryptering" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Filkryptering är aktiverat." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Följande filtyper kommer inte att krypteras:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Exkludera följande filtyper från kryptering:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Ingen" +msgstr "" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 193cc6f265..5dd02b6d8a 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Lokal_Profil , 2013 -# Magnus Höglund , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -21,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Åtkomst beviljad" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Fel vid konfigurering av Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Bevilja åtkomst" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Ange en giltig Dropbox nyckel och hemlighet." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Fel vid konfigurering av Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Varning: Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat." +msgstr "" #: lib/config.php:437 msgid "" @@ -61,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Extern lagring" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Mappnamn" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Extern lagring" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Konfiguration" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Alternativ" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Tillämplig" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Lägg till lagring" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Ingen angiven" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Alla användare" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Grupper" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Användare" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Radera" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Aktivera extern lagring för användare" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Tillåt användare att montera egen extern lagring" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL rotcertifikat" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Importera rotcertifikat" +msgstr "" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index c8e79bb65d..2cbba4063e 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Magnus Höglund , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Lösenord" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Skicka" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s delade mappen %s med dig" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s delade filen %s med dig" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Ladda ner" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Ingen förhandsgranskning tillgänglig för" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "webbtjänster under din kontroll" +msgstr "" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index c917c8bda1..fc4eb8cc9b 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André , 2013. -# Magnus Höglund , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Kunde inte radera %s permanent" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Kunde inte återställa %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "utför återställning" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Fel" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "radera filen permanent" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Radera permanent" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Namn" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Raderad" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 mapp" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} mappar" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 fil" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} filer" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Ingenting här. Din papperskorg är tom!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Återskapa" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Radera" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Raderade filer" +msgstr "" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index ada122d58b..2f719cca29 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Magnus Höglund , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -21,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Kunde inte återställa: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "lyckades" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Filen %s återställdes till version %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "misslyckades" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Filen %s kunde inte återställas till version %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Inga gamla versioner finns tillgängliga" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Ingen sökväg angiven" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Versioner" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Återställ en fil till en tidigare version genom att klicka på knappen" +msgstr "" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 13887eda44..b180cdaeac 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Magnus Höglund , 2012-2013 -# Magnus Höglund , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -21,71 +19,71 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Hjälp" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Personligt" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Inställningar" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Användare" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Program" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Admin" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Nerladdning av ZIP är avstängd." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Filer laddas ner en åt gången." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Tillbaka till Filer" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Valda filer är för stora för att skapa zip-fil." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "kunde inte bestämmas" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Applikationen är inte aktiverad" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Fel vid autentisering" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Ogiltig token. Ladda om sidan." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Filer" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Text" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Bilder" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -115,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Var god kontrollera installationsguiden." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "sekunder sedan" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 minut sedan" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d minuter sedan" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 timme sedan" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d timmar sedan" +msgstr "" #: template.php:118 msgid "today" -msgstr "idag" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "igår" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d dagar sedan" +msgstr "" #: template.php:121 msgid "last month" -msgstr "förra månaden" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d månader sedan" +msgstr "" #: template.php:123 msgid "last year" -msgstr "förra året" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "år sedan" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s finns. Få mer information" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "uppdaterad" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "uppdateringskontroll är inaktiverad" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Kunde inte hitta kategorin \"%s\"" +msgstr "" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index cb9118bf97..07f0fb9ae4 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -3,21 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Lokal_Profil , 2013 -# Christer Eriksson , 2012 -# Daniel Sandman , 2012 -# HakanS , 2011 -# Magnus Höglund , 2012-2013 -# Magnus Höglund , 2012 -# xt00r , 2012 -# Daniel Sandman , 2011, 2012 -# tscooter , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -28,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Kan inte ladda listan från App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Autentiseringsfel" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -41,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Kan inte ändra visningsnamn" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Gruppen finns redan" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Kan inte lägga till grupp" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Kunde inte aktivera appen." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "E-post sparad" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Ogiltig e-post" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Kan inte radera grupp" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Kan inte radera användare" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Språk ändrades" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Ogiltig begäran" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administratörer kan inte ta bort sig själva från admingruppen" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Kan inte lägga till användare i gruppen %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Kan inte radera användare från gruppen %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Kunde inte uppdatera appen" +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Uppdaterar till {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Deaktivera" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Aktivera" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Var god vänta..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Fel" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Uppdaterar..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Fel uppstod vid uppdatering av appen" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Uppdaterad" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Sparar..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "raderad" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "ångra" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Kan inte ta bort användare" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Grupper" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Gruppadministratör" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Radera" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "lägg till grupp" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Ett giltigt användarnamn måste anges" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Fel vid skapande av användare" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Ett giltigt lösenord måste anges" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Säkerhetsvarning" +msgstr "" #: templates/admin.php:18 msgid "" @@ -189,32 +180,32 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Din datakatalog och dina filer är förmodligen tillgängliga från Internet. Den .htaccess-fil som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern så att datakatalogen inte längre är tillgänglig eller att du flyttar datakatalogen utanför webbserverns dokument-root." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Installationsvarning" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Var god kontrollera installationsguiden." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Modulen \"fileinfo\" saknas" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" @@ -264,7 +255,7 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Dela" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" @@ -276,7 +267,7 @@ msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Tillåt länkar" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" @@ -284,23 +275,23 @@ msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Tillåt vidaredelning" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Tillåt användare att dela vidare filer som delats med dem" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Tillåt delning med alla" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Tillåt bara delning med användare i egna grupper" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Säkerhet" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" @@ -319,7 +310,7 @@ msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Logg" +msgstr "" #: templates/admin.php:196 msgid "Log level" @@ -327,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Mer" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Mindre" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Version" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -345,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Utvecklad av ownCloud kommunity, källkoden är licenserad under AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Lägg till din applikation" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Fler Appar" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Välj en App" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Se programsida på apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licensierad av " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Uppdatera" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Användardokumentation" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Administratördokumentation" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Onlinedokumentation" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Kommersiell support" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Du har använt %s av tillgängliga %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Skaffa appar för att synkronisera dina filer" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Visa Första uppstarts-guiden igen" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Lösenord" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Ditt lösenord har ändrats" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Kunde inte ändra ditt lösenord" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Nuvarande lösenord" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Nytt lösenord" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Ändra lösenord" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Visat namn" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "E-post" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Din e-postadress" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Fyll i en e-postadress för att aktivera återställning av lösenord" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Språk" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Hjälp att översätta" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Använd denna adress för att ansluta till ownCloud i din filhanterare" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Inloggningsnamn" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Skapa" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Förvald lagring" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Obegränsad" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Annat" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Lagring" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "ändra visat namn" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "ange nytt lösenord" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Förvald" +msgstr "" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index f75fdc8da0..371f6c3ea5 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# André , 2013. -# Magnus Höglund , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -22,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Misslyckades med att radera serverinställningen" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Inställningen är giltig och anslutningen kunde upprättas!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Konfigurationen är riktig, men Bind felade. Var vänlig och kontrollera serverinställningar och logininformation." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Inställningen är ogiltig. Vänligen se ownCloud-loggen för fler detaljer." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Raderingen misslyckades" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Ta över inställningar från tidigare serverkonfiguration?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Behåll inställningarna?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Kunde inte lägga till serverinställning" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Anslutningstestet lyckades" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Anslutningstestet misslyckades" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Vill du verkligen radera den nuvarande serverinställningen?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Bekräfta radering" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dom." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Varning: PHP LDAP - modulen är inte installerad, serversidan kommer inte att fungera. Kontakta din systemadministratör för installation." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Serverinställning" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Lägg till serverinställning" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Server" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Du behöver inte ange protokoll förutom om du använder SSL. Starta då med ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Start DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Ett Start DN per rad" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Du kan ange start DN för användare och grupper under fliken Avancerat" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Användare DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN för användaren som skall användas, t.ex. uid=agent, dc=example, dc=com. För anonym åtkomst, lämna DN och lösenord tomt." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Lösenord" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "För anonym åtkomst, lämna DN och lösenord tomt." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Filter logga in användare" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Definierar filter att tillämpa vid inloggningsförsök. %% uid ersätter användarnamn i loginåtgärden." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "använd platshållare %%uid, t ex \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Filter lista användare" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Definierar filter att tillämpa vid listning av användare." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "utan platshållare, t.ex. \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Gruppfilter" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definierar filter att tillämpa vid listning av grupper." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "utan platshållare, t.ex. \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Uppkopplingsinställningar" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Konfiguration aktiv" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Ifall denna är avbockad så kommer konfigurationen att skippas." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Säkerhetskopierings-värd (Replika)" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Ange en valfri värd för säkerhetskopiering. Den måste vara en replika av den huvudsakliga LDAP/AD-servern" +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Säkerhetskopierins-port (Replika)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Inaktivera huvudserver" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "När denna är påkopplad kommer ownCloud att koppla upp till replika-servern, endast." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Använd TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Använd inte för LDAPS-anslutningar, det kommer inte att fungera." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "LDAP-servern är okänslig för gemener och versaler (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Stäng av verifiering av SSL-certifikat." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Om anslutningen bara fungerar med det här alternativet, importera LDAP-serverns SSL-certifikat i din ownCloud-server." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Rekommenderas inte, använd bara för test. " +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Cache Time-To-Live" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "i sekunder. En förändring tömmer cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Mappinställningar" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Attribut för användarnamn" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Attribut som används för att generera användarnamn i ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Bas för användare i katalogtjänst" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "En Användare start DN per rad" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Användarsökningsattribut" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Valfritt; ett attribut per rad" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Attribut för gruppnamn" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Attribut som används för att generera gruppnamn i ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Bas för grupper i katalogtjänst" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "En Grupp start DN per rad" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Gruppsökningsattribut" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Attribut för gruppmedlemmar" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Specialattribut" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Kvotfält" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Datakvot standard" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "i bytes" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "E-postfält" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Namnregel för hemkatalog" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attribut." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Testa konfigurationen" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Hjälp" +msgstr "" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 8a88331b36..a9035f785c 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -293,7 +293,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "" @@ -409,7 +409,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "" @@ -519,37 +519,37 @@ msgstr "" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" @@ -561,33 +561,33 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index b82d85ea2a..13e9c0e6db 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 2d586daf24..84ed219358 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index 1105720759..9a1b8f84a9 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 324fbf714d..327c56dc2f 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index dd07e32269..b865f9f8a6 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_versions.po b/l10n/sw_KE/files_versions.po index d0251e6a97..2a223ee7bb 100644 --- a/l10n/sw_KE/files_versions.po +++ b/l10n/sw_KE/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index f2bae1c728..65a7f5f215 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 0f7f454f90..e93dc47057 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index 7c6391cdc5..b16b2afdf5 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 17ed3cfa66..93756be687 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rupan , 2013 -# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -45,11 +43,11 @@ msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "பிரிவு வகைகள் வழங்கப்படவில்லை" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "சேர்ப்பதற்கான வகைகள் இல்லையா?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -60,184 +58,184 @@ msgstr "" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "பொருள் வகை வழங்கப்படவில்லை" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID வழங்கப்படவில்லை" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "விருப்பங்களுக்கு %s ஐ சேர்ப்பதில் வழு" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "நீக்குவதற்கு எந்தப் பிரிவும் தெரிவுசெய்யப்படவில்லை." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "விருப்பத்திலிருந்து %s ஐ அகற்றுவதில் வழு.உஇஇ" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "ஞாயிற்றுக்கிழமை" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "திங்கட்கிழமை" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "செவ்வாய்க்கிழமை" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "புதன்கிழமை" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "வியாழக்கிழமை" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "வெள்ளிக்கிழமை" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "சனிக்கிழமை" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "தை" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "மாசி" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "பங்குனி" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "சித்திரை" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "வைகாசி" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "ஆனி" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "ஆடி" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "ஆவணி" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "புரட்டாசி" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "ஐப்பசி" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "கார்த்திகை" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "மார்கழி" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "அமைப்புகள்" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "செக்கன்களுக்கு முன்" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 நிமிடத்திற்கு முன் " +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 மணித்தியாலத்திற்கு முன்" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "இன்று" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "நேற்று" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{நாட்கள்} நாட்களுக்கு முன்" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "கடந்த மாதம்" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "மாதங்களுக்கு முன்" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "கடந்த வருடம்" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "வருடங்களுக்கு முன்" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "சரி" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "இரத்து செய்க" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "தெரிவுசெய்க " +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "ஆம்" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "இல்லை" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "பொருள் வகை குறிப்பிடப்படவில்லை." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -245,15 +243,15 @@ msgstr "பொருள் வகை குறிப்பிடப்படவ #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "வழு" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "செயலி பெயர் குறிப்பிடப்படவில்லை." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "தேவைப்பட்ட கோப்பு {கோப்பு} நிறுவப்படவில்லை!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -261,43 +259,43 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "பகிர்வு" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "பகிரும் போதான வழு" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "பகிராமல் உள்ளப்போதான வழு" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "அனுமதிகள் மாறும்போதான வழு" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "உங்களுடனும் குழுவுக்கிடையிலும் {குழு} பகிரப்பட்டுள்ளது {உரிமையாளர்}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "உங்களுடன் பகிரப்பட்டுள்ளது {உரிமையாளர்}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "பகிர்தல்" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "இணைப்புடன் பகிர்தல்" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "கடவுச்சொல்லை பாதுகாத்தல்" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "கடவுச்சொல்" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -309,67 +307,67 @@ msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "காலாவதி தேதியை குறிப்பிடுக" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "காலவதியாகும் திகதி" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "மின்னஞ்சலினூடான பகிர்வு: " +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "நபர்கள் யாரும் இல்லை" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "பகிரமுடியாது" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "தொகுக்க முடியும்" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "கட்டுப்பாடான அணுகல்" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "படைத்தல்" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "இற்றைப்படுத்தல்" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "நீக்குக" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "பகிர்தல்" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" +msgstr "" #: js/share.js:604 msgid "Sending ..." @@ -392,89 +390,89 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud இன் கடவுச்சொல் மீளமைப்பு" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "உங்கள் கடவுச்சொல்லை மீளமைக்க பின்வரும் இணைப்பை பயன்படுத்தவும் : {இணைப்பு}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். " +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "மின்னுஞ்சல் அனுப்புதலை மீளமைக்குக" +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "வேண்டுகோள் தோல்வியுற்றது!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "பயனாளர் பெயர்" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "கோரிக்கை மீளமைப்பு" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "உங்களுடைய கடவுச்சொல் மீளமைக்கப்பட்டது" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "புகுபதிகைக்கான பக்கம்" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "புதிய கடவுச்சொல்" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "மீளமைத்த கடவுச்சொல்" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "தனிப்பட்ட" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "பயனாளர்கள்" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "பயன்பாடுகள்" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "நிர்வாகி" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "உதவி" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "அணுக தடை" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud காணப்படவில்லை" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "வகைகளை தொகுக்க" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "சேர்க்க" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "பாதுகாப்பு எச்சரிக்கை" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -488,13 +486,13 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "குறிப்பிட்ட எண்ணிக்கை பாதுகாப்பான புறப்பாக்கி / உண்டாக்கிகள் இல்லை, தயவுசெய்து PHP OpenSSL நீட்சியை இயலுமைப்படுத்துக. " +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "பாதுகாப்பான சீரற்ற எண்ணிக்கையான புறப்பாக்கி இல்லையெனின், தாக்குனரால் கடவுச்சொல் மீளமைப்பு அடையாளவில்லைகள் முன்மொழியப்பட்டு உங்களுடைய கணக்கை கைப்பற்றலாம்." +msgstr "" #: templates/installation.php:39 msgid "" @@ -511,83 +509,83 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr " நிர்வாக கணக்கொன்றை உருவாக்குக" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "மேம்பட்ட" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "தரவு கோப்புறை" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "தரவுத்தளத்தை தகவமைக்க" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "பயன்படுத்தப்படும்" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "தரவுத்தள பயனாளர்" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "தரவுத்தள கடவுச்சொல்" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "தரவுத்தள பெயர்" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "தரவுத்தள அட்டவணை" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "தரவுத்தள ஓம்புனர்" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "அமைப்பை முடிக்க" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "உங்கள் கட்டுப்பாட்டின் கீழ் இணைய சேவைகள்" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "விடுபதிகை செய்க" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "தன்னிச்சையான புகுபதிகை நிராகரிப்பட்டது!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "உங்களுடைய கடவுச்சொல்லை அண்மையில் மாற்றவில்லையின், உங்களுடைய கணக்கு சமரசமாகிவிடும்!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "உங்களுடைய கணக்கை மீண்டும் பாதுகாக்க தயவுசெய்து உங்களுடைய கடவுச்சொல்லை மாற்றவும்." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "ஞாபகப்படுத்துக" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "புகுபதிகை" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -595,11 +593,11 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "முந்தைய" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "அடுத்து" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index f5e69fc7ee..486634dfd2 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -34,11 +33,11 @@ msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" +msgstr "" #: ajax/upload.php:27 msgid "" @@ -49,23 +48,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "வட்டில் எழுத முடியவில்லை" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -77,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "கோப்புகள்" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "பகிர்வு" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -89,39 +88,39 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "அழிக்க" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "பெயர்மாற்றம்" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "நிலுவையிலுள்ள" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} ஏற்கனவே உள்ளது" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "மாற்றிடுக" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "பெயரை பரிந்துரைக்க" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "இரத்து செய்க" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "முன் செயல் நீக்கம் " +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -129,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -147,7 +146,7 @@ msgstr "" msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -165,7 +164,7 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை" +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -173,16 +172,16 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL வெறுமையாக இருக்கமுடியாது." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -190,87 +189,87 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "வழு" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "பெயர்" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "அளவு" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "மாற்றப்பட்டது" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 கோப்புறை" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{எண்ணிக்கை} கோப்புறைகள்" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 கோப்பு" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{எண்ணிக்கை} கோப்புகள்" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "பதிவேற்றுக" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "கோப்பு கையாளுதல்" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு " +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "ஆகக் கூடியது:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "பல்வேறுப்பட்ட கோப்பு மற்றும் கோப்புறைகளை பதிவிறக்க தேவையானது." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP பதிவிறக்கலை இயலுமைப்படுத்துக" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 ஆனது எல்லையற்றது" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP கோப்புகளுக்கான ஆகக்கூடிய உள்ளீட்டு அளவு" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "சேமிக்க" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "புதிய" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "கோப்பு உரை" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "கோப்புறை" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "இணைப்பிலிருந்து" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -278,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "பதிவேற்றலை இரத்து செய்க" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -286,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "பதிவிறக்குக" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "பகிரப்படாதது" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "பதிவேற்றல் மிகப்பெரியது" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "தற்போது வருடப்படுபவை" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 59fde5c4fe..73809d8b39 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "மறைக்குறியீடு" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "ஒன்றுமில்லை" +msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 993268f450..59c5d73be5 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -20,23 +19,23 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "அனுமதி வழங்கப்பட்டது" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Dropbox சேமிப்பை தகவமைப்பதில் வழு" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "அனுமதியை வழங்கல்" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "தயவுசெய்து ஒரு செல்லுபடியான Dropbox செயலி சாவி மற்றும் இரகசியத்தை வழங்குக. " +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Google இயக்க சேமிப்பகத்தை தகமைப்பதில் வழு" +msgstr "" #: lib/config.php:431 msgid "" @@ -60,11 +59,11 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "வெளி சேமிப்பு" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "கோப்புறை பெயர்" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -72,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "தகவமைப்பு" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "தெரிவுகள்" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "பயன்படத்தக்க" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -88,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "தொகுப்பில்லா" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "பயனாளர்கள் எல்லாம்" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "குழுக்கள்" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "பயனாளர்" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "நீக்குக" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "பயனாளர் வெளி சேமிப்பை இயலுமைப்படுத்துக" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "பயனாளர் அவர்களுடைய சொந்த வெளியக சேமிப்பை ஏற்ற அனுமதிக்க" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL வேர் சான்றிதழ்கள்" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "வேர் சான்றிதழை இறக்குமதி செய்க" +msgstr "" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 1aef2d28b2..ec0917af4e 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "கடவுச்சொல்" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "சமர்ப்பிக்குக" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "பதிவிறக்குக" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" +msgstr "" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 924bbb462a..03f2f40f14 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "வழு" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "பெயர்" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 கோப்புறை" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{எண்ணிக்கை} கோப்புறைகள்" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 கோப்பு" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{எண்ணிக்கை} கோப்புகள்" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "நீக்குக" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po index 7c7a4eee0b..96229fd345 100644 --- a/l10n/ta_LK/files_versions.po +++ b/l10n/ta_LK/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 82184ac7e8..6cbe4b951d 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -20,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "உதவி" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "தனிப்பட்ட" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "அமைப்புகள்" +msgstr "" #: app.php:385 msgid "Users" -msgstr "பயனாளர்கள்" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "செயலிகள்" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "நிர்வாகம்" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "கோப்புகளுக்கு செல்க" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "வீ சொலிக் கோப்புகளை உருவாக்குவதற்கு தெரிவுசெய்யப்பட்ட கோப்புகள் மிகப்பெரியவை" +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -64,27 +63,27 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "செயலி இயலுமைப்படுத்தப்படவில்லை" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "அத்தாட்சிப்படுத்தலில் வழு" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "அடையாளவில்லை காலாவதியாகிவிட்டது. தயவுசெய்து பக்கத்தை மீள் ஏற்றுக." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "கோப்புகள்" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "உரை" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "படங்கள்" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -114,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "செக்கன்களுக்கு முன்" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 நிமிடத்திற்கு முன் " +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d நிமிடங்களுக்கு முன்" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 மணித்தியாலத்திற்கு முன்" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d மணித்தியாலத்திற்கு முன்" +msgstr "" #: template.php:118 msgid "today" -msgstr "இன்று" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "நேற்று" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d நாட்களுக்கு முன்" +msgstr "" #: template.php:121 msgid "last month" -msgstr "கடந்த மாதம்" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d மாதத்திற்கு முன்" +msgstr "" #: template.php:123 msgid "last year" -msgstr "கடந்த வருடம்" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "வருடங்களுக்கு முன்" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s இன்னும் இருக்கின்றன. மேலதிக தகவல்களுக்கு எடுக்க" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "நவீன" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "இற்றைப்படுத்தலை சரிபார்ப்பதை செயலற்றதாக்குக" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" +msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 608c334d00..045bf42185 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -20,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "செயலி சேமிப்பிலிருந்து பட்டியலை ஏற்றமுடியாதுள்ளது" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "அத்தாட்சிப்படுத்தலில் வழு" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -37,39 +36,39 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "குழு ஏற்கனவே உள்ளது" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "குழுவை சேர்க்க முடியாது" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "செயலியை இயலுமைப்படுத்த முடியாது" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "மின்னஞ்சல் சேமிக்கப்பட்டது" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "செல்லுபடியற்ற மின்னஞ்சல்" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "குழுவை நீக்க முடியாது" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "பயனாளரை நீக்க முடியாது" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "மொழி மாற்றப்பட்டது" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "செல்லுபடியற்ற வேண்டுகோள்" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -78,12 +77,12 @@ msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "குழு %s இல் பயனாளரை சேர்க்க முடியாது" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "குழு %s இலிருந்து பயனாளரை நீக்கமுடியாது" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -95,11 +94,11 @@ msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "இயலுமைப்ப" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "செயலற்றதாக்குக" +msgstr "" #: js/apps.js:55 msgid "Please wait...." @@ -107,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "வழு" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -123,7 +122,7 @@ msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "இயலுமைப்படுத்துக" +msgstr "" #: js/users.js:43 msgid "deleted" @@ -131,7 +130,7 @@ msgstr "" #: js/users.js:43 msgid "undo" -msgstr "முன் செயல் நீக்கம் " +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -140,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "குழுக்கள்" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "குழு நிர்வாகி" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "அழிக்க" +msgstr "" #: js/users.js:262 msgid "add group" @@ -168,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "_மொழி_பெயர்_" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "பாதுகாப்பு எச்சரிக்கை" +msgstr "" #: templates/admin.php:18 msgid "" @@ -181,7 +180,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "உங்களுடைய தரவு அடைவு மற்றும் உங்களுடைய கோப்புக்களை பெரும்பாலும் இணையத்தினூடாக அணுகலாம். ownCloud இனால் வழங்கப்படுகின்ற .htaccess கோப்பு வேலை செய்யவில்லை. தரவு அடைவை நீண்ட நேரத்திற்கு அணுகக்கூடியதாக உங்களுடைய வலைய சேவையகத்தை தகவமைக்குமாறு நாங்கள் உறுதியாக கூறுகிறோம் அல்லது தரவு அடைவை வலைய சேவையக மூல ஆவணத்திலிருந்து வெளியே அகற்றுக. " +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" @@ -319,11 +318,11 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "மேலதிக" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "குறைவான" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" @@ -337,31 +336,31 @@ msgid "" "licensed under the AGPL." -msgstr "Developed by the ownCloud community, the source code is licensed under the AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "உங்களுடைய செயலியை சேர்க்க" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "மேலதிக செயலிகள்" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "செயலி ஒன்றை தெரிவுசெய்க" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "apps.owncloud.com இல் செயலி பக்கத்தை பார்க்க" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-அனுமதி பெற்ற " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "இற்றைப்படுத்தல்" +msgstr "" #: templates/help.php:4 msgid "User Documentation" @@ -390,7 +389,7 @@ msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" @@ -402,27 +401,27 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "கடவுச்சொல்" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "தற்போதைய கடவுச்சொல்" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "புதிய கடவுச்சொல்" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "கடவுச்சொல்லை மாற்றுக" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" @@ -430,23 +429,23 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "மின்னஞ்சல்" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "கடவுச்சொல் மீள் பெறுவதை இயலுமைப்படுத்துவதற்கு மின்னஞ்சல் முகவரியை இயலுமைப்படுத்துக" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "மொழி" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "மொழிபெயர்க்க உதவி" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" @@ -462,7 +461,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "உருவாக்குக" +msgstr "" #: templates/users.php:33 msgid "Default Storage" @@ -474,7 +473,7 @@ msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "மற்றவை" +msgstr "" #: templates/users.php:82 msgid "Storage" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 6a582a0329..786a6657be 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -40,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "நீக்கம் தோல்வியடைந்தது" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -93,16 +92,16 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "ஓம்புனர்" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "நீங்கள் SSL சேவையை தவிர உடன்படு வரைமுறையை தவிர்க்க முடியும். பிறகு ldaps:.// உடன் ஆரம்பிக்கவும்" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "தள DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" @@ -110,11 +109,11 @@ msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "நீங்கள் பயனாளர்களுக்கும் மேன்மை தத்தலில் உள்ள குழுவிற்கும் தள DN ஐ குறிப்பிடலாம் " +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "பயனாளர் DN" +msgstr "" #: templates/settings.php:45 msgid "" @@ -125,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "கடவுச்சொல்" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -169,7 +168,7 @@ msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "எந்த ஒதுக்கீடும் இல்லாமல், உதாரணம். \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" @@ -185,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "துறை " +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -211,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "TLS ஐ பயன்படுத்தவும்" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -219,21 +218,21 @@ msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "உணர்ச்சியான LDAP சேவையகம் (சாளரங்கள்)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "SSL சான்றிதழின் செல்லுபடியை நிறுத்திவிடவும்" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "இந்த தெரிவுகளில் மட்டும் இணைப்பு வேலைசெய்தால், உங்களுடைய owncloud சேவையகத்திலிருந்து LDAP சேவையகத்தின் SSL சான்றிதழை இறக்குமதி செய்யவும்" +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "பரிந்துரைக்கப்படவில்லை, சோதனைக்காக மட்டும் பயன்படுத்தவும்." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -241,7 +240,7 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "செக்கன்களில். ஒரு மாற்றம் இடைமாற்றுநினைவகத்தை வெற்றிடமாக்கும்." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" @@ -249,15 +248,15 @@ msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "பயனாளர் காட்சிப்பெயர் புலம்" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "பயனாளரின் ownCloud பெயரை உருவாக்க LDAP பண்புக்கூறை பயன்படுத்தவும்." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "தள பயனாளர் மரம்" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" @@ -273,15 +272,15 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "குழுவின் காட்சி பெயர் புலம் " +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "ownCloud குழுக்களின் பெயர்களை உருவாக்க LDAP பண்புக்கூறை பயன்படுத்தவும்." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "தள குழு மரம்" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" @@ -293,7 +292,7 @@ msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "குழு உறுப்பினர் சங்கம்" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -309,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "bytes களில் " +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -323,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "பயனாளர் பெயரிற்கு வெற்றிடமாக விடவும் (பொது இருப்பு). இல்லாவிடின் LDAP/AD பண்புக்கூறை குறிப்பிடவும்." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -331,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "உதவி" +msgstr "" diff --git a/l10n/te/core.po b/l10n/te/core.po index 3077ce28a0..0352f8ce0d 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# వీవెన్ , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -53,7 +52,7 @@ msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "ఈ వర్గం ఇప్పటికే ఉంది: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -83,143 +82,143 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "ఆదివారం" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "సోమవారం" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "మంగళవారం" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "బుధవారం" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "గురువారం" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "శుక్రవారం" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "శనివారం" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "జనవరి" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "ఫిబ్రవరి" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "మార్చి" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "ఏప్రిల్" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "మే" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "జూన్" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "జూలై" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "ఆగస్ట్" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "సెప్టెంబర్" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "అక్టోబర్" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "నవంబర్" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "డిసెంబర్" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "అమరికలు" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "క్షణాల క్రితం" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 నిమిషం క్రితం" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} నిమిషాల క్రితం" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 గంట క్రితం" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} గంటల క్రితం" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "ఈరోజు" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "నిన్న" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} రోజుల క్రితం" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "పోయిన నెల" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} నెలల క్రితం" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "నెలల క్రితం" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "పోయిన సంవత్సరం" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "సంవత్సరాల క్రితం" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "సరే" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "రద్దుచేయి" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" @@ -227,11 +226,11 @@ msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "అవును" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "కాదు" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -244,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "పొరపాటు" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -294,9 +293,9 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "సంకేతపదం" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -304,7 +303,7 @@ msgstr "" #: js/share.js:174 msgid "Send" -msgstr "పంపించు" +msgstr "" #: js/share.js:178 msgid "Set expiration date" @@ -312,7 +311,7 @@ msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "కాలం చెల్లు తేదీ" +msgstr "" #: js/share.js:211 msgid "Share via email:" @@ -352,7 +351,7 @@ msgstr "" #: js/share.js:331 msgid "delete" -msgstr "తొలగించు" +msgstr "" #: js/share.js:334 msgid "share" @@ -410,9 +409,9 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" -msgstr "వాడుకరి పేరు" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" @@ -428,7 +427,7 @@ msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "కొత్త సంకేతపదం" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" @@ -440,7 +439,7 @@ msgstr "" #: strings.php:6 msgid "Users" -msgstr "వాడుకరులు" +msgstr "" #: strings.php:7 msgid "Apps" @@ -452,7 +451,7 @@ msgstr "" #: strings.php:9 msgid "Help" -msgstr "సహాయం" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" @@ -468,7 +467,7 @@ msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "చేర్చు" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -520,37 +519,37 @@ msgstr "" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" @@ -560,35 +559,35 @@ msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "నిష్క్రమించు" +msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" -msgstr "మీ సంకేతపదం పోయిందా?" +msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index 3b3bfad5c4..ef4a68994c 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# వీవెన్ , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -85,11 +84,11 @@ msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "శాశ్వతంగా తొలగించు" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "తొలగించు" +msgstr "" #: js/fileactions.js:194 msgid "Rename" @@ -113,7 +112,7 @@ msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "రద్దుచేయి" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" @@ -190,15 +189,15 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "పొరపాటు" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "పేరు" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "పరిమాణం" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" @@ -254,7 +253,7 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "భద్రపరచు" +msgstr "" #: templates/index.php:7 msgid "New" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index cf1d6e37e1..d80b40f452 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 9315027cc5..011316f75f 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -99,12 +99,12 @@ msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "వాడుకరులు" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "తొలగించు" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 8d26d12e93..7dabdb5a17 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "సంకేతపదం" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index c7d0a59bc5..134ba264e3 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "పొరపాటు" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -41,11 +41,11 @@ msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "శాశ్వతంగా తొలగించు" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "పేరు" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "తొలగించు" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/te/files_versions.po b/l10n/te/files_versions.po index d69922bf83..2a514b335c 100644 --- a/l10n/te/files_versions.po +++ b/l10n/te/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 3123d067aa..03abe8df16 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "సహాయం" +msgstr "" #: app.php:362 msgid "Personal" @@ -27,11 +27,11 @@ msgstr "" #: app.php:373 msgid "Settings" -msgstr "అమరికలు" +msgstr "" #: app.php:385 msgid "Users" -msgstr "వాడుకరులు" +msgstr "" #: app.php:398 msgid "Apps" @@ -113,83 +113,83 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "క్షణాల క్రితం" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 నిమిషం క్రితం" +msgstr "" #: template.php:115 #, php-format @@ -198,7 +198,7 @@ msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 గంట క్రితం" +msgstr "" #: template.php:117 #, php-format @@ -207,11 +207,11 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "ఈరోజు" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "నిన్న" +msgstr "" #: template.php:120 #, php-format @@ -220,7 +220,7 @@ msgstr "" #: template.php:121 msgid "last month" -msgstr "పోయిన నెల" +msgstr "" #: template.php:122 #, php-format @@ -229,11 +229,11 @@ msgstr "" #: template.php:123 msgid "last year" -msgstr "పోయిన సంవత్సరం" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "సంవత్సరాల క్రితం" +msgstr "" #: updater.php:78 #, php-format diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 7be66ea639..2533f7d87b 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# వీవెన్ , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -107,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "పొరపాటు" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -148,7 +147,7 @@ msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "తొలగించు" +msgstr "" #: js/users.js:262 msgid "add group" @@ -319,7 +318,7 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "మరిన్ని" +msgstr "" #: templates/admin.php:228 msgid "Less" @@ -402,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "సంకేతపదం" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -418,7 +417,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "కొత్త సంకేతపదం" +msgstr "" #: templates/personal.php:44 msgid "Change password" @@ -434,7 +433,7 @@ msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "మీ ఈమెయిలు చిరునామా" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" @@ -442,7 +441,7 @@ msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "భాష" +msgstr "" #: templates/personal.php:84 msgid "Help translate" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 4dceae3576..fa94761bfe 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "సంకేతపదం" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "సహాయం" +msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5aa70a6728..ba63a3c2f1 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 33756ecac6..c6a6a99395 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index a44582dc6a..49ec44cbf8 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 57abfd70eb..ef3f1d58f3 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index ed463f7043..d5ac7c66d3 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index d519099182..38fbffc7d9 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 79d170d07b..4ad409f0bc 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index b17067ebad..a9abdb5246 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 0748929501..ddd82632df 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 8afc7388df..53560c0691 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index f1b91293f0..2a51278b85 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index dcba6badd3..bb91c35869 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013 -# AriesAnywhere Anywhere , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -22,34 +20,34 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "ผู้ใช้งาน %s ได้แชร์ไฟล์ให้กับคุณ" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "ผู้ใช้งาน %s ได้แชร์โฟลเดอร์ให้กับคุณ" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "ผู้ใช้งาน %s ได้แชร์ไฟล์ \"%s\" ให้กับคุณ และคุณสามารถสามารถดาวน์โหลดไฟล์ดังกล่าวได้จากที่นี่: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "ผู้ใช้งาน %s ได้แชร์โฟลเดอร์ \"%s\" ให้กับคุณ และคุณสามารถดาวน์โหลดโฟลเดอร์ดังกล่าวได้จากที่นี่: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "ยังไม่ได้ระบุชนิดของหมวดหมู่" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "ไม่มีหมวดหมู่ที่ต้องการเพิ่ม?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -60,184 +58,184 @@ msgstr "" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "ชนิดของวัตถุยังไม่ได้ถูกระบุ" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "ยังไม่ได้ระบุรหัส %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "เกิดข้อผิดพลาดในการเพิ่ม %s เข้าไปยังรายการโปรด" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "ยังไม่ได้เลือกหมวดหมู่ที่ต้องการลบ" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "เกิดข้อผิดพลาดในการลบ %s ออกจากรายการโปรด" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "วันอาทิตย์" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "วันจันทร์" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "วันอังคาร" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "วันพุธ" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "วันพฤหัสบดี" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "วันศุกร์" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "วันเสาร์" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "มกราคม" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "กุมภาพันธ์" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "มีนาคม" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "เมษายน" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "พฤษภาคม" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "มิถุนายน" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "กรกฏาคม" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "สิงหาคม" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "กันยายน" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "ตุลาคม" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "พฤศจิกายน" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "ธันวาคม" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "ตั้งค่า" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "วินาที ก่อนหน้านี้" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 นาทีก่อนหน้านี้" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} นาทีก่อนหน้านี้" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 ชั่วโมงก่อนหน้านี้" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} ชั่วโมงก่อนหน้านี้" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "วันนี้" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "เมื่อวานนี้" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{day} วันก่อนหน้านี้" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "เดือนที่แล้ว" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} เดือนก่อนหน้านี้" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "เดือน ที่ผ่านมา" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "ปีที่แล้ว" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "ปี ที่ผ่านมา" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "ตกลง" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "ยกเลิก" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "เลือก" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "ตกลง" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "ไม่ตกลง" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "ชนิดของวัตถุยังไม่ได้รับการระบุ" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -245,236 +243,236 @@ msgstr "ชนิดของวัตถุยังไม่ได้รับ #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "พบข้อผิดพลาด" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "ชื่อของแอปยังไม่ได้รับการระบุชื่อ" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "ไฟล์ {file} ซึ่งเป็นไฟล์ที่จำเป็นต้องได้รับการติดตั้งไว้ก่อน ยังไม่ได้ถูกติดตั้ง" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "แชร์แล้ว" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "แชร์" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "ได้แชร์ให้กับคุณ และกลุ่ม {group} โดย {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "ถูกแชร์ให้กับคุณโดย {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "แชร์ให้กับ" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "แชร์ด้วยลิงก์" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "ใส่รหัสผ่านไว้" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "รหัสผ่าน" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "ส่งลิงก์ให้ทางอีเมล" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "ส่ง" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "กำหนดวันที่หมดอายุ" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "วันที่หมดอายุ" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "แชร์ผ่านทางอีเมล" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "ไม่พบบุคคลที่ต้องการ" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "ได้แชร์ {item} ให้กับ {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "ยกเลิกการแชร์" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "สามารถแก้ไข" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "ระดับควบคุมการเข้าใช้งาน" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "สร้าง" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "อัพเดท" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "ลบ" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "แชร์" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "ใส่รหัสผ่านไว้" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "กำลังส่ง..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "ส่งอีเมล์แล้ว" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "การอัพเดทไม่เป็นผลสำเร็จ กรุณาแจ้งปัญหาที่เกิดขึ้นไปยัง คอมมูนิตี้ผู้ใช้งาน ownCloud" +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้" +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "รีเซ็ตรหัสผ่าน ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "รีเซ็ตค่าการส่งอีเมล" +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "คำร้องขอล้มเหลว!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "ชื่อผู้ใช้งาน" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "ขอเปลี่ยนรหัสใหม่" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "รหัสผ่านของคุณถูกเปลี่ยนเรียบร้อยแล้ว" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "ไปที่หน้าเข้าสู่ระบบ" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "รหัสผ่านใหม่" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "เปลี่ยนรหัสผ่าน" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "ส่วนตัว" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "ผู้ใช้งาน" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Apps" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "ผู้ดูแลระบบ" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "ช่วยเหลือ" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "การเข้าถึงถูกหวงห้าม" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "ไม่พบ Cloud" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "แก้ไขหมวดหมู่" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "เพิ่ม" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "คำเตือนเกี่ยวกับความปลอดภัย" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -488,13 +486,13 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "ยังไม่มีตัวสร้างหมายเลขแบบสุ่มให้ใช้งาน, กรุณาเปิดใช้งานส่วนเสริม PHP OpenSSL" +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "หากปราศจากตัวสร้างหมายเลขแบบสุ่มที่ช่วยป้องกันความปลอดภัย ผู้บุกรุกอาจสามารถที่จะคาดคะเนรหัสยืนยันการเข้าถึงเพื่อรีเซ็ตรหัสผ่าน และเอาบัญชีของคุณไปเป็นของตนเองได้" +msgstr "" #: templates/installation.php:39 msgid "" @@ -511,83 +509,83 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "สร้าง บัญชีผู้ดูแลระบบ" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "ขั้นสูง" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "โฟลเดอร์เก็บข้อมูล" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "กำหนดค่าฐานข้อมูล" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "จะถูกใช้" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "ชื่อผู้ใช้งานฐานข้อมูล" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "รหัสผ่านฐานข้อมูล" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "ชื่อฐานข้อมูล" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "พื้นที่ตารางในฐานข้อมูล" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Database host" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "ติดตั้งเรียบร้อยแล้ว" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "web services under your control" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "ออกจากระบบ" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "การเข้าสู่ระบบอัตโนมัติถูกปฏิเสธแล้ว" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "หากคุณยังไม่ได้เปลี่ยนรหัสผ่านของคุณเมื่อเร็วๆนี้, บัญชีของคุณอาจถูกบุกรุกโดยผู้อื่น" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "กรุณาเปลี่ยนรหัสผ่านของคุณอีกครั้ง เพื่อป้องกันบัญชีของคุณให้ปลอดภัย" +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "ลืมรหัสผ่าน?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "จำรหัสผ่าน" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "เข้าสู่ระบบ" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -595,13 +593,13 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "ก่อนหน้า" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "ถัดไป" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "กำลังอัพเดท ownCloud ไปเป็นรุ่น %s, กรุณารอสักครู่" +msgstr "" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 4fe226e8a6..2cc3f9543a 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013 -# AriesAnywhere Anywhere , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -22,67 +20,67 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "ไม่สามารถย้าย %s ได้ - ไฟล์ที่ใช้ชื่อนี้มีอยู่แล้ว" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "ไม่สามารถย้าย %s ได้" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "ไม่สามารถเปลี่ยนชื่อไฟล์ได้" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "ไฟล์ที่อัพโหลดยังไม่ได้ถูกอัพโหลดอย่างสมบูรณ์" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "ยังไม่มีไฟล์ที่ถูกอัพโหลด" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "แฟ้มเอกสารชั่วคราวเกิดการสูญหาย" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "ไฟล์" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "แชร์" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -90,47 +88,47 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "ลบ" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "เปลี่ยนชื่อ" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "อยู่ระหว่างดำเนินการ" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} มีอยู่แล้วในระบบ" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "แทนที่" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "แนะนำชื่อ" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "ยกเลิก" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "เลิกทำ" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "ดำเนินการตามคำสั่งลบ" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -138,140 +136,140 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง" +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "ชื่อไฟล์ไม่สามารถเว้นว่างได้" +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือผสานไฟล์ต่างๆได้อีกต่อไป" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "มีพื้นที่เหลือไม่เพียงพอ" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "การอัพโหลดถูกยกเลิก" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL ไม่สามารถเว้นว่างได้" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "ข้อผิดพลาด" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "ชื่อ" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "ขนาด" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "ปรับปรุงล่าสุด" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 โฟลเดอร์" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} โฟลเดอร์" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 ไฟล์" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} ไฟล์" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "อัพโหลด" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "การจัดกาไฟล์" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "ขนาดไฟล์สูงสุดที่อัพโหลดได้" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "จำนวนสูงสุดที่สามารถทำได้: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "จำเป็นต้องใช้สำหรับการดาวน์โหลดไฟล์พร้อมกันหลายๆไฟล์หรือดาวน์โหลดทั้งโฟลเดอร์" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "อนุญาตให้ดาวน์โหลดเป็นไฟล์ ZIP ได้" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 หมายถึงไม่จำกัด" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ขนาดไฟล์ ZIP สูงสุด" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "บันทึก" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "อัพโหลดไฟล์ใหม่" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "ไฟล์ข้อความ" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "แฟ้มเอกสาร" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "จากลิงก์" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -279,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "ยกเลิกการอัพโหลด" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -287,34 +285,34 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "ดาวน์โหลด" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "ยกเลิกการแชร์ข้อมูล" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "กำลังอัพเกรดหน่วยความจำแคชของระบบไฟล์..." +msgstr "" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index ffe62d2598..dd8d2bb158 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "การเข้ารหัส" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "ไม่ต้อง" +msgstr "" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 97804e79f6..50434bd638 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -20,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "การเข้าถึงได้รับอนุญาตแล้ว" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "เกิดข้อผิดพลาดในการกำหนดค่าพื้นที่จัดเก็บข้อมูล Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "อนุญาตให้เข้าถึงได้" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "กรุณากรอกรหัส app key ของ Dropbox และรหัสลับ" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "เกิดข้อผิดพลาดในการกำหนดค่าการจัดเก็บข้อมูลในพื้นที่ของ Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "คำเตือน: \"smbclient\" ยังไม่ได้ถูกติดตั้ง. การชี้ CIFS/SMB เพื่อแชร์ข้อมูลไม่สามารถกระทำได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "คำเตือน: การสนับสนุนการใช้งาน FTP ในภาษา PHP ยังไม่ได้ถูกเปิดใช้งานหรือถูกติดตั้ง. การชี้ FTP เพื่อแชร์ข้อมูลไม่สามารถดำเนินการได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง" +msgstr "" #: lib/config.php:437 msgid "" @@ -60,11 +59,11 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "พื้นทีจัดเก็บข้อมูลจากภายนอก" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "ชื่อโฟลเดอร์" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -72,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "การกำหนดค่า" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "ตัวเลือก" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "สามารถใช้งานได้" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -88,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "ยังไม่มีการกำหนด" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "ผู้ใช้งานทั้งหมด" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "กลุ่ม" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "ผู้ใช้งาน" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "ลบ" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "เปิดให้มีการใช้พื้นที่จัดเก็บข้อมูลของผู้ใช้งานจากภายนอกได้" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "อนุญาตให้ผู้ใช้งานสามารถชี้ตำแหน่งไปที่พื้นที่จัดเก็บข้อมูลภายนอกของตนเองได้" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "นำเข้าข้อมูลใบรับรองความปลอดภัยจาก Root" +msgstr "" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 4d2deef16b..5f33b56686 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "รหัสผ่าน" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "ส่ง" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "ดาวน์โหลด" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" +msgstr "" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 9c184200fe..dbfdd75ff2 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -30,11 +29,11 @@ msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "ดำเนินการคืนค่า" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "ข้อผิดพลาด" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -46,40 +45,40 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "ชื่อ" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "ลบแล้ว" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 โฟลเดอร์" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} โฟลเดอร์" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 ไฟล์" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} ไฟล์" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "คืนค่า" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "ลบ" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "ไฟล์ที่ลบทิ้ง" +msgstr "" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 4abcac4e0d..27c551f496 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 4ede057cbd..0360886d4a 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -20,71 +19,71 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "ช่วยเหลือ" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "ส่วนตัว" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "ตั้งค่า" +msgstr "" #: app.php:385 msgid "Users" -msgstr "ผู้ใช้งาน" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "แอปฯ" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "ผู้ดูแล" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "กลับไปที่ไฟล์" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "ไม่สามารถกำหนดได้" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "แอพพลิเคชั่นดังกล่าวยังไม่ได้เปิดใช้งาน" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "รหัสยืนยันความถูกต้องหมดอายุแล้ว กรุณาโหลดหน้าเว็บใหม่อีกครั้ง" +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "ไฟล์" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "ข้อความ" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "รูปภาพ" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -114,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "วินาทีที่ผ่านมา" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 นาทีมาแล้ว" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d นาทีที่ผ่านมา" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 ชั่วโมงก่อนหน้านี้" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d ชั่วโมงก่อนหน้านี้" +msgstr "" #: template.php:118 msgid "today" -msgstr "วันนี้" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "เมื่อวานนี้" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d วันที่ผ่านมา" +msgstr "" #: template.php:121 msgid "last month" -msgstr "เดือนที่แล้ว" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d เดือนมาแล้ว" +msgstr "" #: template.php:123 msgid "last year" -msgstr "ปีที่แล้ว" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "ปีที่ผ่านมา" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s พร้อมให้ใช้งานได้แล้ว. ดูรายละเอียดเพิ่มเติม" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "ทันสมัย" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "การตรวจสอบชุดอัพเดทถูกปิดใช้งานไว้" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "ไม่พบหมวดหมู่ \"%s\"" +msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 5bb0806de2..4bdb11ca07 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013 -# AriesAnywhere Anywhere , 2012 -# Robin Appelman , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -22,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "ไม่สามารถโหลดรายการจาก App Store ได้" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -39,101 +36,101 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "ไม่สามารถเพิ่มกลุ่มได้" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "ไม่สามารถเปิดใช้งานแอปได้" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "อีเมลถูกบันทึกแล้ว" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "อีเมลไม่ถูกต้อง" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "ไม่สามารถลบกลุ่มได้" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "ไม่สามารถลบผู้ใช้งานได้" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "เปลี่ยนภาษาเรียบร้อยแล้ว" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "คำร้องขอไม่ถูกต้อง" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "ผู้ดูแลระบบไม่สามารถลบตัวเองออกจากกลุ่มผู้ดูแลได้" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "ไม่สามารถอัพเดทแอปฯ" +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "อัพเดทไปเป็นรุ่น {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "ปิดใช้งาน" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "เปิดใช้งาน" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "กรุณารอสักครู่..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "ข้อผิดพลาด" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "กำลังอัพเดทข้อมูล..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "เกิดข้อผิดพลาดในระหว่างการอัพเดทแอปฯ" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "อัพเดทแล้ว" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "กำลังบันทึุกข้อมูล..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "ลบแล้ว" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "เลิกทำ" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -142,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "กลุ่ม" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "ผู้ดูแลกลุ่ม" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "ลบ" +msgstr "" #: js/users.js:262 msgid "add group" @@ -170,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "ภาษาไทย" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "คำเตือนเกี่ยวกับความปลอดภัย" +msgstr "" #: templates/admin.php:18 msgid "" @@ -183,7 +180,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว" +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" @@ -321,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "มาก" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "น้อย" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "รุ่น" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -339,60 +336,60 @@ msgid "" "licensed under the AGPL." -msgstr "พัฒนาโดย the ชุมชนผู้ใช้งาน ownCloud, the ซอร์สโค้ดอยู่ภายใต้สัญญาอนุญาตของ AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "เพิ่มแอปของคุณ" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "แอปฯอื่นเพิ่มเติม" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "เลือก App" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-ลิขสิทธิ์การใช้งานโดย " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "อัพเดท" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "เอกสารคู่มือการใช้งานสำหรับผู้ใช้งาน" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "เอกสารคู่มือการใช้งานสำหรับผู้ดูแลระบบ" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "เอกสารคู่มือการใช้งานออนไลน์" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "กระดานสนทนา" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "บริการลูกค้าแบบเสียค่าใช้จ่าย" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" @@ -400,96 +397,96 @@ msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "แสดงหน้าจอวิซาร์ดนำทางครั้งแรกอีกครั้ง" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "รหัสผ่าน" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "รหัสผ่านปัจจุบัน" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "รหัสผ่านใหม่" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "เปลี่ยนรหัสผ่าน" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "ชื่อที่ต้องการแสดง" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "อีเมล์" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "ที่อยู่อีเมล์ของคุณ" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "ภาษา" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "ช่วยกันแปล" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "ใช้ที่อยู่นี้เพื่อเชื่อมต่อกับ ownCloud ในโปรแกรมจัดการไฟล์ของคุณ" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "ชื่อที่ใช้สำหรับเข้าสู่ระบบ" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "สร้าง" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "พื้นที่จำกัดข้อมูลเริ่มต้น" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "ไม่จำกัดจำนวน" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "อื่นๆ" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "พื้นที่จัดเก็บข้อมูล" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "เปลี่ยนชื่อที่ต้องการให้แสดง" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "ตั้งค่ารหัสผ่านใหม่" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "ค่าเริ่มต้น" +msgstr "" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index fdda463b0f..82f2dc94b8 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -20,27 +19,27 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "การลบการกำหนดค่าเซิร์ฟเวอร์ล้มเหลว" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "การกำหนดค่าถูกต้องและการเชื่อมต่อสามารถเชื่อมต่อได้!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "การกำหนดค่าถูกต้อง, แต่การผูกข้อมูลล้มเหลว, กรุณาตรวจสอบการตั้งค่าเซิร์ฟเวอร์และข้อมูลการเข้าใช้งาน" +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "การกำหนดค่าไม่ถูกต้อง กรุณาดูรายละเอียดจากบันทึกการเปลี่ยนแปลงของ ownCloud สำหรับรายละเอียดเพิ่มเติม" +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "การลบทิ้งล้มเหลว" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -48,132 +47,132 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "รักษาการตั้งค่าไว้?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "ไม่สามารถเพิ่มค่ากำหนดเซิร์ฟเวอร์ได้" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "ทดสอบการเชื่อมต่อสำเร็จ" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "ทดสอบการเชื่อมต่อล้มเหลว" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "คุณแน่ใจแล้วหรือว่าต้องการลบการกำหนดค่าเซิร์ฟเวอร์ปัจจุบันทิ้งไป?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "ยืนยันการลบทิ้ง" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "คำเตือน: แอปฯ user_ldap และ user_webdavauth ไม่สามารถใช้งานร่วมกันได้. คุณอาจประสพปัญหาที่ไม่คาดคิดจากเหตุการณ์ดังกล่าว กรุณาติดต่อผู้ดูแลระบบของคุณเพื่อระงับการใช้งานแอปฯ ตัวใดตัวหนึ่งข้างต้น" +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "คำเตือน: โมดูล PHP LDAP ยังไม่ได้ถูกติดตั้ง, ระบบด้านหลังจะไม่สามารถทำงานได้ กรุณาติดต่อผู้ดูแลระบบของคุณเพื่อทำการติดตั้งโมดูลดังกล่าว" +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "การกำหนดค่าเซิร์ฟเวอร์" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "เพิ่มการกำหนดค่าเซิร์ฟเวอร์" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "โฮสต์" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "คุณสามารถปล่อยช่องโปรโตคอลเว้นไว้ได้, ยกเว้นกรณีที่คุณต้องการใช้ SSL จากนั้นเริ่มต้นด้วย ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN ฐาน" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "หนึ่ง Base DN ต่อบรรทัด" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "คุณสามารถระบุ DN หลักสำหรับผู้ใช้งานและกลุ่มต่างๆในแท็บขั้นสูงได้" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN ของผู้ใช้งาน" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN ของผู้ใช้งานที่เป็นลูกค้าอะไรก็ตามที่ผูกอยู่ด้วย เช่น uid=agent, dc=example, dc=com, สำหรับการเข้าถึงโดยบุคคลนิรนาม, ให้เว้นว่าง DN และ รหัสผ่านเอาไว้" +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "รหัสผ่าน" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "สำหรับการเข้าถึงโดยบุคคลนิรนาม ให้เว้นว่าง DN และรหัสผ่านไว้" +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "ตัวกรองข้อมูลการเข้าสู่ระบบของผู้ใช้งาน" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "กำหนดตัวกรองข้อมูลที่ต้องการนำไปใช้งาน, เมื่อมีความพยายามในการเข้าสู่ระบบ %%uid จะถูกนำไปแทนที่ชื่อผู้ใช้งานในการกระทำของการเข้าสู่ระบบ" +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "ใช้ตัวยึด %%uid, เช่น \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "ตัวกรองข้อมูลรายชื่อผู้ใช้งาน" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "ระบุตัวกรองข้อมูลที่ต้องการนำไปใช้งาน, เมื่อดึงข้อมูลผู้ใช้งาน" +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "โดยไม่ต้องมีตัวยึดใดๆ, เช่น \"objectClass=person\"," +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "ตัวกรองข้อมูลกลุ่ม" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "ระบุตัวกรองข้อมูลที่ต้องการนำไปใช้งาน, เมื่อดึงข้อมูลกลุ่ม" +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "โดยไม่ต้องมีตัวยึดใดๆ, เช่น \"objectClass=posixGroup\"," +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "ตั้งค่าการเชื่อมต่อ" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" @@ -185,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "พอร์ต" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -203,7 +202,7 @@ msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "ปิดใช้งานเซิร์ฟเวอร์หลัก" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." @@ -211,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "ใช้ TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -219,21 +218,21 @@ msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "เซิร์ฟเวอร์ LDAP ประเภท Case insensitive (วินโดวส์)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "ปิดใช้งานการตรวจสอบความถูกต้องของใบรับรองความปลอดภัย SSL" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "หากการเชื่อมต่อสามารถทำงานได้เฉพาะกับตัวเลือกนี้เท่านั้น, ให้นำเข้าข้อมูลใบรับรองความปลอดภัยแบบ SSL ของเซิร์ฟเวอร์ LDAP ดังกล่าวเข้าไปไว้ในเซิร์ฟเวอร์ ownCloud" +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "ไม่แนะนำให้ใช้งาน, ใช้สำหรับการทดสอบเท่านั้น" +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -241,63 +240,63 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "ในอีกไม่กี่วินาที ระบบจะเปลี่ยนแปลงข้อมูลในแคชให้ว่างเปล่า" +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "ตั้งค่าไดเร็กทอรี่" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "ช่องแสดงชื่อผู้ใช้งานที่ต้องการ" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "คุณลักษณะ LDAP ที่ต้องการใช้สำหรับสร้างชื่อของผู้ใช้งาน ownCloud" +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "รายการผู้ใช้งานหลักแบบ Tree" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "หนึ่ง User Base DN ต่อบรรทัด" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "คุณลักษณะการค้นหาชื่อผู้ใช้" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "ตัวเลือกเพิ่มเติม; หนึ่งคุณลักษณะต่อบรรทัด" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "ช่องแสดงชื่อกลุ่มที่ต้องการ" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "คุณลักษณะ LDAP ที่ต้องการใช้สร้างชื่อกลุ่มของ ownCloud" +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "รายการกลุ่มหลักแบบ Tree" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "หนึ่ง Group Base DN ต่อบรรทัด" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "คุณลักษณะการค้นหาแบบกลุ่ม" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "ความสัมพันธ์ของสมาชิกในกลุ่ม" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "คุณลักษณะพิเศษ" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" @@ -309,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "ในหน่วยไบต์" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -323,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "เว้นว่างไว้สำหรับ ชื่อผู้ใช้ (ค่าเริ่มต้น) หรือไม่กรุณาระบุคุณลักษณะของ LDAP/AD" +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -331,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "ช่วยเหลือ" +msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index fb9404245f..779f11ef0f 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -3,21 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Aranel Surion , 2011, 2012 -# Caner Başaran , 2012 -# otefenli , 2013 -# ifthenelse , 2013 -# alpere , 2012 -# ismail yenigül , 2013 -# Necdet Yücel , 2012 -# atakan96 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: ifthenelse \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "%s kullanıcısı sizinle bir dosyayı paylaştı" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "%s kullanıcısı sizinle bir dizini paylaştı" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "%s kullanıcısı \"%s\" dosyasını sizinle paylaştı. %s adresinden indirilebilir" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "%s kullanıcısı \"%s\" dizinini sizinle paylaştı. %s adresinden indirilebilir" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Kategori türü desteklenmemektedir." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Eklenecek kategori yok?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Bu kategori zaten mevcut: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Nesne türü desteklenmemektedir." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID belirtilmedi." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "%s favorilere eklenirken hata oluştu" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Silmek için bir kategori seçilmedi" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "%s favorilere çıkarılırken hata oluştu" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Pazar" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Pazartesi" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Salı" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Çarşamba" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Perşembe" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Cuma" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Cumartesi" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Ocak" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Şubat" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Mart" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Nisan" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Mayıs" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Haziran" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Temmuz" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Ağustos" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Eylül" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Ekim" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Kasım" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Aralık" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Ayarlar" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "saniye önce" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 dakika önce" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} dakika önce" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 saat önce" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} saat önce" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "bugün" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "dün" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} gün önce" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "geçen ay" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} ay önce" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "ay önce" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "geçen yıl" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "yıl önce" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Tamam" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "İptal" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "seç" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Evet" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Hayır" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Nesne türü belirtilmemiş." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -251,363 +243,363 @@ msgstr "Nesne türü belirtilmemiş." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Hata" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "uygulama adı belirtilmedi." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "İhtiyaç duyulan {file} dosyası kurulu değil." +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Paylaşılan" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Paylaş" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Paylaşım sırasında hata " +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Paylaşım iptal ediliyorken hata" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "İzinleri değiştirirken hata oluştu" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr " {owner} tarafından sizinle ve {group} ile paylaştırılmış" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner} trafından sizinle paylaştırıldı" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "ile Paylaş" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Bağlantı ile paylaş" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Şifre korunması" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Parola" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Kişiye e-posta linki" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Gönder" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Son kullanma tarihini ayarla" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Son kullanım tarihi" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Eposta ile paylaş" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Kişi bulunamadı" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Tekrar paylaşmaya izin verilmiyor" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr " {item} içinde {user} ile paylaşılanlarlar" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Paylaşılmayan" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "düzenleyebilir" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "erişim kontrolü" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "oluştur" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "güncelle" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "sil" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "paylaş" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Paralo korumalı" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Geçerlilik tarihi tanımlama hatası" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Gönderiliyor..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Eposta gönderildi" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin ownCloud community." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Güncelleme başarılı. ownCloud'a yönlendiriliyor." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud parola sıfırlama" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Sıfırlama epostası gönderildi." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "İstek reddedildi!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Kullanıcı adı" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Sıfırlama iste" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Parolanız sıfırlandı" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Giriş sayfasına git" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Yeni parola" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Parolayı sıfırla" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Kişisel" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Kullanıcılar" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Uygulamalar" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Yönetici" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Yardım" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Erişim yasaklı" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Bulut bulunamadı" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Kategorileri düzenle" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Ekle" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Güvenlik Uyarisi" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "ownCloud'u güvenli olarak kullanmak için, lütfen PHP kurulumunuzu güncelleyin." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Güvenli rasgele sayı üreticisi bulunamadı. Lütfen PHP OpenSSL eklentisini etkinleştirin." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Güvenli rasgele sayı üreticisi olmadan saldırganlar parola sıfırlama simgelerini tahmin edip hesabınızı ele geçirebilir." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için internet'ten erişime açık." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Server'ınızı nasıl ayarlayacağınıza dair bilgi için, lütfen bu linki ziyaret edin documentation." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Bir yönetici hesabı oluşturun" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Gelişmiş" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Veri klasörü" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Veritabanını ayarla" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "kullanılacak" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Veritabanı kullanıcı adı" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Veritabanı parolası" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Veritabanı adı" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Veritabanı tablo alanı" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Veritabanı sunucusu" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Kurulumu tamamla" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "kontrolünüzdeki web servisleri" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Çıkış yap" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Otomatik oturum açma reddedildi!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Yakın zamanda parolanızı değiştirmedi iseniz hesabınız riske girebilir." +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Hesabınızı korumak için lütfen parolanızı değiştirin." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Parolanızı mı unuttunuz?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "hatırla" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Giriş yap" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Alternatif Girişler" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "önceki" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "sonraki" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Owncloud %s versiyonuna güncelleniyor. Biraz zaman alabilir." +msgstr "" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index afaa3cab10..a2c43184b1 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Aranel Surion , 2011, 2012 -# Caner Başaran , 2012 -# Emre Saraçoğlu , 2012 -# alpere , 2012 -# ismail yenigül , 2013 -# Necdet Yücel , 2012 -# atakan96 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -27,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s taşınamadı. Bu isimde dosya zaten var." +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s taşınamadı" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Dosya adı değiştirilemedi" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Dosya yüklenmedi. Bilinmeyen hata" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Bir hata yok, dosya başarıyla yüklendi" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Yüklenen dosyanın sadece bir kısmı yüklendi" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Hiç dosya yüklenmedi" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Geçici bir klasör eksik" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Diske yazılamadı" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Yeterli disk alanı yok" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Geçersiz dizin." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Dosyalar" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Paylaş" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Kalıcı olarak sil" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Sil" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "İsim değiştir." +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Bekliyor" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} zaten mevcut" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "değiştir" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "Öneri ad" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "iptal" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "{new_name} ismi {old_name} ile değiştirildi" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "geri al" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "Silme işlemini gerçekleştir" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 dosya yüklendi" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "Dosyalar yükleniyor" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' geçersiz dosya adı." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Dosya adı boş olamaz." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkronizasyon edilmeyecek." +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Yeterli disk alanı yok" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Yükleme iptal edildi." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL boş olamaz." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir." +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Hata" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Ad" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Boyut" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Değiştirilme" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 dizin" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} dizin" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 dosya" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} dosya" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Yükle" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Dosya taşıma" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maksimum yükleme boyutu" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "mümkün olan en fazla: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Çoklu dosya ve dizin indirmesi için gerekli." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "ZIP indirmeyi aktif et" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 limitsiz demektir" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP dosyaları için en fazla girdi sayısı" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Kaydet" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Yeni" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Metin dosyası" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Klasör" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Bağlantıdan" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Dosyalar silindi" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Yüklemeyi iptal et" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "Buraya erişim hakkınız yok." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "İndir" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Paylaşılmayan" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Yüklemeniz çok büyük" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Dosyalar taranıyor, lütfen bekleyin." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Güncel tarama" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Sistem dosyası önbelleği güncelleniyor" +msgstr "" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 445755c59c..4ff100142e 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Şifreleme" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Dosya şifreleme aktif." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Belirtilen dosya tipleri şifrelenmeyecek:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Seçilen dosya tiplerini şifreleme:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Hiçbiri" +msgstr "" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 40ad3efd58..a2cb0c97c4 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -3,17 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Caner Başaran , 2013 -# Necdet Yücel , 2012 -# atakan96 , 2013 -# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-25 01:55+0200\n" -"PO-Revision-Date: 2013-04-24 23:50+0000\n" -"Last-Translator: KAT.RAT12 \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Giriş kabul edildi" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Dropbox depo yapılandırma hatası" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Erişim sağlandı" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Lütfen Dropbox app key ve secret temin ediniz" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Google Drive depo yapılandırma hatası" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, " +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin." +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr " Ihbar . Dayanma Curl PHPden aktif veya yuklemedi degil. Monte ownClouden/WebDay veya GoogleDrive mumkun degil. Lutfen sistm yonetici sormak yuklemek icin. " +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Harici Depolama" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Dizin ismi" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Harici Depolama" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Yapılandırma" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Seçenekler" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Uygulanabilir" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Depo ekle" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Hiçbiri" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Tüm Kullanıcılar" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Gruplar" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Kullanıcılar" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Sil" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Kullanıcılar için Harici Depolamayı Etkinleştir" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Kullanıcıların kendi harici depolamalarını bağlamalarına izin ver" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL kök sertifikaları" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Kök Sertifikalarını İçe Aktar" +msgstr "" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 365c9b3a7d..f728134562 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Şifre" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Gönder" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s sizinle paylaşılan %s klasör" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s sizinle paylaşılan %s klasör" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "İndir" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Kullanılabilir önizleme yok" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "Bilgileriniz güvenli ve şifreli" +msgstr "" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 2354e94204..3d5379201d 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# H.Oktay Tefenli , 2013. -# TayançKILIÇLI , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "%s Kalıcı olarak silinemedi" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "%s Geri yüklenemedi" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "Geri yükleme işlemini gerçekleştir" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Hata" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "Dosyayı kalıcı olarak sil" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Kalıcı olarak sil" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "İsim" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Silindi" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 dizin" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} dizin" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 dosya" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} dosya" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Burası boş. Çöp kutun tamamen boş." +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Geri yükle" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Sil" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Silinen Dosyalar" +msgstr "" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index bf1b595e50..26d282def9 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# H.Oktay Tefenli , 2013. -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -23,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Geri alınamıyor: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "Başarılı." +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Dosya %s, %s versiyonuna döndürüldü" +msgstr "" #: history.php:49 msgid "failure" -msgstr "hata" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Dosya %s, %s versiyonuna döndürülemedi." +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Eski versiyonlar mevcut değil." +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Yama belirtilmemiş" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Sürümler" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Dosyanın önceki sürümüne geri dönmek için, değişiklikleri geri al butonuna tıklayın" +msgstr "" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 6f7a085617..268cbc635e 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -3,16 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ismail yenigül , 2013 -# Necdet Yücel , 2012 -# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-23 01:58+0200\n" -"PO-Revision-Date: 2013-04-22 16:03+0000\n" -"Last-Translator: KAT.RAT12 \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,79 +19,79 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Yardı" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Kişisel" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Ayarlar" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Kullanıcılar" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Uygulamalar" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Yönetici" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP indirmeleri kapatılmıştır." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Dosyaların birer birer indirilmesi gerekmektedir." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Dosyalara dön" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "tespit edilemedi" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Uygulama etkinleştirilmedi" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Kimlik doğrulama hatası" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Jetonun süresi geçti. Lütfen sayfayı yenileyin." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Dosyalar" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Metin" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Resimler" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Bir adi kullanici vermek. " +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Parola yonetici birlemek. " +msgstr "" #: setup.php:55 #, php-format @@ -118,15 +115,15 @@ msgstr "" #: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL adi kullanici ve/veya parola yasal degildir. " +msgstr "" #: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Bir konto veya kullanici birlemek ihtiyacin. " +msgstr "" #: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " +msgstr "" #: setup.php:233 msgid "MySQL username and/or password not valid" @@ -138,28 +135,28 @@ msgstr "" #: setup.php:615 #, php-format msgid "DB Error: \"%s\"" -msgstr "DB Hata: ''%s''" +msgstr "" #: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 #: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 #: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Komut rahasiz ''%s''. " +msgstr "" #: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL kullanici '%s @local host zatan var. " +msgstr "" #: setup.php:305 msgid "Drop this user from MySQL" -msgstr "Bu kullanici MySQLden list disari koymak. " +msgstr "" #: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL kullanici '%s @ % % zaten var (zaten yazili)" +msgstr "" #: setup.php:311 msgid "Drop this user from MySQL." @@ -175,83 +172,83 @@ msgstr "" msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:854 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." +msgstr "" -#: setup.php:855 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "saniye önce" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 dakika önce" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d dakika önce" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 saat önce" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d saat önce" +msgstr "" #: template.php:118 msgid "today" -msgstr "bugün" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "dün" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d gün önce" +msgstr "" #: template.php:121 msgid "last month" -msgstr "geçen ay" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d ay önce" +msgstr "" #: template.php:123 msgid "last year" -msgstr "geçen yıl" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "yıl önce" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s kullanılabilir durumda. Daha fazla bilgi alın" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "güncel" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "güncelleme kontrolü kapalı" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "\"%s\" kategorisi bulunamadı" +msgstr "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 1523631947..393326b6dd 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -3,21 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Aranel Surion , 2011-2013 -# Caner Başaran , 2013 -# Emre Saraçoğlu , 2012 -# Fatih Aşıcı , 2013 -# otefenli , 2013 -# alpere , 2012 -# ismail yenigül , 2013 -# Necdet Yücel , 2012 -# tgezginis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -28,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "App Store'dan liste yüklenemiyor" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Eşleşme hata" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -41,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Ekran adı değiştirilemiyor" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Grup zaten mevcut" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Gruba eklenemiyor" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Uygulama devreye alınamadı" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Eposta kaydedildi" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Geçersiz eposta" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Grup silinemiyor" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Kullanıcı silinemiyor" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Dil değiştirildi" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Geçersiz istek" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Yöneticiler kendilerini yönetici grubundan kaldıramaz" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Kullanıcı %s grubuna eklenemiyor" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "%s grubundan kullanıcı kaldırılamıyor" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Uygulama güncellenemedi." +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "{appversion} Güncelle" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Etkin değil" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Etkin" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Lütfen bekleyin...." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Hata" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Güncelleniyor...." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Uygulama güncellenirken hata" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Güncellendi" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Kaydediliyor..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "silindi" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "geri al" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Kullanıcı kaldırılamıyor" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Gruplar" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Yönetici Grubu " +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Sil" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "grup ekle" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Kullanıcı oluşturulurken hata" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Geçerli bir parola mutlaka sağlanmalı" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Türkçe" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Güvenlik Uyarisi" +msgstr "" #: templates/admin.php:18 msgid "" @@ -189,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Kurulum Uyarısı" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Modül 'fileinfo' kayıp" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Locale çalışmıyor." +msgstr "" #: templates/admin.php:63 #, php-format @@ -226,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Bu ownCloud sunucusu sistem yerelini %s olarak değiştiremedi. Bu, dosya adlarındaki bazı karakterler ile sorun yaşanabileceği anlamına gelir. %s yerelini desteklemek için gerekli paketleri kurmanızı şiddetle öneririz." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "İnternet bağlantısı çalışmıyor" +msgstr "" #: templates/admin.php:78 msgid "" @@ -240,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "ownCloud sunucusunun internet bağlantısı yok. Bu nedenle harici depolama bağlantısı, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacaktır. Uzak dosyalara erişim ve e-posta ile bildirim gönderme çalışmayacak. Eğer ownCloud tüm özelliklerini kullanmak istiyorsanız, internet bağlantısı gerekmektedir." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Yüklenen her sayfa ile bir görev çalıştır" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php bir webcron hizmetinde kaydedilir. Owncloud kökündeki cron.php sayfasını http üzerinden dakikada bir çağır." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Sistemin cron hizmetini kullan. Bir sistem cronjob'ı ile owncloud klasöründeki cron.php dosyasını dakikada bir çağır." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Paylaşım" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Paylaşım API'sini etkinleştir." +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Bağlantıları izin ver." +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Paylaşıma izin ver" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Kullanıcıların kendileri ile paylaşılan öğeleri yeniden paylaşmasına izin ver" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Kullanıcıların herşeyi paylaşmalarına izin ver" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Güvenlik" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "HTTPS bağlantısına zorla" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "İstemcileri ownCloud'a şifreli bir bağlantı ile bağlanmaya zorlar." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen bu ownCloud örneğine HTTPS ile bağlanın." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Kayıtlar" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Günlük seviyesi" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Daha fazla" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Az" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Sürüm" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -345,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Geliştirilen TarafownCloud community, the source code is altında lisanslanmıştır AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Uygulamanı Ekle" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Daha fazla uygulama" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Bir uygulama seçin" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Uygulamanın sayfasına apps.owncloud.com adresinden bakın " +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-lisanslayan " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Güncelleme" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Kullanıcı Belgelendirmesi" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Yönetici Belgelendirmesi" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Çevrimiçi Belgelendirme" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Forum" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Hata Takip Sistemi" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Ticari Destek" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Kullandığınız:%s seçilebilecekler: %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Dosyalarınızı senkronize etmek için uygulamayı indirin" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "İlk Çalıştırma Sihirbazını yeniden göster" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Parola" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Şifreniz değiştirildi" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Parolanız değiştirilemiyor" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Mevcut parola" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Yeni parola" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Parola değiştir" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Ekran Adı" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Eposta" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Eposta adresiniz" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Dil" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Çevirilere yardım edin" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Bu adresi kullanarak ownCloud 'unuza dosya yöneticinizde bağlanın" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Giriş Adı" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Oluştur" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Varsayılan Depolama" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Limitsiz" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Diğer" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Depolama" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "ekran adını değiştir" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "yeni parola belirle" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Varsayılan" +msgstr "" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 0f588d99bf..5105d11ee5 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -3,16 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Necdet Yücel , 2012 -# atakan96 , 2013 -# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 00:20+0000\n" -"Last-Translator: KAT.RAT12 \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,64 +23,64 @@ msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Uyunlama mantikli ve baglama yerlestirmek edebilmi." +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Uyunlama gecerli, fakat Baglama yapamadi. Lutfen kontrol yapmak, eger bu iyi yerlertirdi. " +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Uyunma mantikli degil. Lutfen log daha kontrol yapmak. " +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Silme başarısız oldu" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Parametri sonadan uyunlama cikarmak mi?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Ayarları kalsınmı?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Sunucu uyunlama birlemek edemen. " +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Bağlantı testi başarılı oldu" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Bağlantı testi başarısız oldu" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Hakikatten, Sonuncu Funksyon durmak istiyor mi?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Silmeyi onayla" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Uyari Apps kullanici_Idap ve user_webdavauth uyunmayan. Bu belki sik degil. Lutfen sistem yonetici sormak on aktif yapmaya. " +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Ihbar Modulu PHP LDAP yuklemdi degil, backend calismacak. Lutfen sistem yonetici sormak yuklemek icin." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" @@ -95,87 +92,87 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Sunucu" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Protokol atlamak edesin, sadece SSL istiyorsaniz. O zaman, idapsile baslamak. " +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Ana DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Bir Tabani DN herbir dizi. " +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. " +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Kullanıcı DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN musterinin, kimle baglamaya yapacagiz,meselâ uid=agent.dc mesela, dc=com Gecinme adisiz ici, DN ve Parola bos birakmak. " +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Parola" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Anonim erişim için DN ve Parola alanlarını boş bırakın." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Kullanıcı Oturum Filtresi" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Filter uyunlamak icin tayin ediyor, ne zaman girişmek isteminiz. % % uid adi kullanici girismeye karsi koymacak. " +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "%%uid yer tutucusunu kullanın, örneğin \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Kullanıcı Liste Filtresi" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Filter uyunmak icin tayin ediyor, ne zaman adi kullanici geri aliyor. " +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "bir yer tutucusu olmadan, örneğin \"objectClass=person\"" +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Grup Süzgeci" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Filter uyunmak icin tayin ediyor, ne zaman grubalari tekrar aliyor. " +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "siz bir yer tutucu, mes. 'objectClass=posixGroup ('posixGrubu''. " +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Bağlantı ayarları" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" @@ -187,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Port" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -205,7 +202,7 @@ msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Ana sunucuyu devredışı birak" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." @@ -213,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "TLS kullan" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -225,17 +222,17 @@ msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "SSL sertifika doğrulamasını kapat." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Bagladiginda, bunla secene sadece calisiyor, sunucu LDAP SSL sunucun ithal etemek, dneyme sizine sunucu ownClouden. " +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Önerilmez, sadece test için kullanın." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -243,7 +240,7 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" @@ -251,7 +248,7 @@ msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Ekran Adi Kullanici, (Alan Adi Kullanici Ekrane)" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." @@ -259,7 +256,7 @@ msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Temel Kullanıcı Ağacı" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" @@ -275,19 +272,19 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Grub Ekrane Alani Adi" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP kullamayin grub adi ownCloud uremek icin. " +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Temel Grup Ağacı" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Bir Grubu Tabani DN her dizgi. " +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" @@ -295,7 +292,7 @@ msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Grup-Üye işbirliği" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -311,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "byte cinsinden" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -325,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Kullanıcı adı bölümünü boş bırakın (varsayılan). " +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -333,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Yardım" +msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 52ea6b2eba..91653d1d07 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dmytro Dzubenko , 2012 -# skoptev , 2012 -# Soul Kim , 2012 -# VicDeo , 2012 -# volodya327 , 2013 -# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -26,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "Користувач %s поділився файлом з вами" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Користувач %s поділився текою з вами" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Користувач %s поділився файлом \"%s\" з вами. Він доступний для завантаження звідси: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Користувач %s поділився текою \"%s\" з вами. Він доступний для завантаження звідси: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Не вказано тип категорії." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Відсутні категорії для додавання?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Ця категорія вже існує: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Не вказано тип об'єкту." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID не вказано." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Помилка при додаванні %s до обраного." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Жодної категорії не обрано для видалення." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Помилка при видалені %s із обраного." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Неділя" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Понеділок" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Вівторок" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Середа" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Четвер" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "П'ятниця" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Субота" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Січень" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Лютий" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Березень" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Квітень" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Травень" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Червень" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Липень" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Серпень" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Вересень" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Жовтень" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Листопад" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Грудень" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Налаштування" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "секунди тому" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 хвилину тому" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} хвилин тому" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 годину тому" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} години тому" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "сьогодні" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "вчора" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} днів тому" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "минулого місяця" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} місяців тому" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "місяці тому" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "минулого року" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "роки тому" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Ok" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Відмінити" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Обрати" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Так" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Ні" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Не визначено тип об'єкту." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -249,363 +243,363 @@ msgstr "Не визначено тип об'єкту." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Помилка" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Не визначено ім'я програми." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Необхідний файл {file} не встановлено!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Опубліковано" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Поділитися" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Помилка під час публікації" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Помилка під час відміни публікації" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Помилка при зміні повноважень" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr " {owner} опублікував для Вас та для групи {group}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner} опублікував для Вас" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Опублікувати для" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Опублікувати через посилання" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Захистити паролем" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Пароль" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Ел. пошта належить Пану" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Надіслати" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Встановити термін дії" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Термін дії" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Опублікувати через Ел. пошту:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Жодної людини не знайдено" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Пере-публікація не дозволяється" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Опубліковано {item} для {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Заборонити доступ" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "може редагувати" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "контроль доступу" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "створити" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "оновити" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "видалити" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "опублікувати" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Захищено паролем" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Помилка при відміні терміна дії" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Помилка при встановленні терміна дії" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Надсилання..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Ел. пошта надіслана" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Оновлення виконалось неуспішно. Будь ласка, повідомте про цю проблему в спільноті ownCloud." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "скидання пароля ownCloud" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Використовуйте наступне посилання для скидання пароля: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Лист скидання відправлено." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Невдалий запит!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Ім'я користувача" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Запит скидання" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Ваш пароль був скинутий" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "До сторінки входу" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Новий пароль" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Скинути пароль" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Особисте" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Користувачі" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Додатки" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Адміністратор" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Допомога" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Доступ заборонено" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Cloud не знайдено" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Редагувати категорії" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Додати" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Попередження про небезпеку" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Будь ласка, оновіть інсталяцію PHP для безпечного використання ownCloud." +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Не доступний безпечний генератор випадкових чисел, будь ласка, активуйте PHP OpenSSL додаток." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Без безпечного генератора випадкових чисел зловмисник може визначити токени скидання пароля і заволодіти Вашим обліковим записом." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Ваші дані каталогів і файлів, ймовірно, доступні з інтернету, тому що .htaccess файл не працює." +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Для отримання інформації, як правильно налаштувати сервер, зверніться до документації." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Створити обліковий запис адміністратора" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Додатково" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Каталог даних" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Налаштування бази даних" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "буде використано" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Користувач бази даних" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Пароль для бази даних" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Назва бази даних" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Таблиця бази даних" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Хост бази даних" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Завершити налаштування" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "веб-сервіс під вашим контролем" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Вихід" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Автоматичний вхід в систему відхилений!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Якщо Ви не міняли пароль останнім часом, Ваш обліковий запис може бути скомпрометованим!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Будь ласка, змініть свій пароль, щоб знову захистити Ваш обліковий запис." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Забули пароль?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "запам'ятати" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Вхід" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Альтернативні Логіни" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "попередній" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "наступний" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Оновлення ownCloud до версії %s, це може зайняти деякий час." +msgstr "" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index f7e6f0353c..a2aabe829e 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dmytro Dzubenko , 2012 -# skoptev , 2012 -# Soul Kim , 2012 -# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -24,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Не вдалося перемістити %s - Файл з таким ім'ям вже існує" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Не вдалося перемістити %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Не вдалося перейменувати файл" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Не завантажено жодного файлу. Невідома помилка" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Файл успішно вивантажено без помилок." +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Файл відвантажено лише частково" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Не відвантажено жодного файлу" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Відсутній тимчасовий каталог" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Невдалося записати на диск" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Місця більше немає" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Невірний каталог." +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Файли" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Поділитися" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Видалити назавжди" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Видалити" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Перейменувати" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Очікування" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} вже існує" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "заміна" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "запропонуйте назву" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "відміна" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "замінено {new_name} на {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "відмінити" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "виконати операцію видалення" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 файл завантажується" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "файли завантажуються" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' це невірне ім'я файлу." +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr " Ім'я файлу не може бути порожнім." +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ваше сховище переповнене, файли більше не можуть бути оновлені або синхронізовані !" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Ваше сховище майже повне ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "Місця більше немає" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Завантаження перервано." +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL не може бути пустим." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Невірне ім'я теки. Використання \"Shared\" зарезервовано Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Помилка" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Ім'я" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Розмір" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Змінено" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 папка" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} папок" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 файл" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} файлів" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Відвантажити" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Робота з файлами" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Максимальний розмір відвантажень" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "макс.можливе:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Необхідно для мульти-файлового та каталогового завантаження." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Активувати ZIP-завантаження" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 є безліміт" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Максимальний розмір завантажуємого ZIP файлу" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Зберегти" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Створити" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Текстовий файл" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Папка" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "З посилання" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "Видалено файлів" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Перервати завантаження" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "У вас тут немає прав на запис." +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Тут нічого немає. Відвантажте що-небудь!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Завантажити" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Заборонити доступ" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Файл занадто великий" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Файли скануються, зачекайте, будь-ласка." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Поточне сканування" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Оновлення кеша файлової системи..." +msgstr "" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 8e820298fb..2c49c451f5 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# пан Володимир , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Шифрування" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Увімкнуто шифрування файлів." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Такі типи файлів шифруватись не будуть:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Виключити наступні типи файлів з ​​шифрування:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Жоден" +msgstr "" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 2be7b986f9..6fb469de29 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# skoptev , 2012 -# VicDeo , 2012 -# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -22,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Доступ дозволено" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Помилка при налаштуванні сховища Dropbox" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Дозволити доступ" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Будь ласка, надайте дійсний ключ та пароль Dropbox." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Помилка при налаштуванні сховища Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." +msgstr "" #: lib/config.php:437 msgid "" @@ -62,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Зовнішні сховища" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Ім'я теки" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "Зовнішнє сховище" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Налаштування" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Опції" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Придатний" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "Додати сховище" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "Не встановлено" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Усі користувачі" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Групи" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Користувачі" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Видалити" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Активувати користувацькі зовнішні сховища" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Дозволити користувачам монтувати власні зовнішні сховища" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL корневі сертифікати" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Імпортувати корневі сертифікати" +msgstr "" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index a6b224557e..259b0bb365 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Пароль" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Submit" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s опублікував каталог %s для Вас" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s опублікував файл %s для Вас" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Завантажити" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Попередній перегляд недоступний для" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "підконтрольні Вам веб-сервіси" +msgstr "" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index bb48add59d..028d02c250 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# пан Володимир , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Неможливо видалити %s назавжди" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Неможливо відновити %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "виконати операцію відновлення" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Помилка" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "видалити файл назавжди" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Видалити назавжди" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Ім'я" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Видалено" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 папка" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} папок" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 файл" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} файлів" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Нічого немає. Ваший кошик для сміття пустий!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Відновити" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Видалити" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "Видалено Файлів" +msgstr "" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 95c4cb2064..3bc9c0fbf1 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# пан Володимир , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Не вдалося відновити: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "успішно" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "Файл %s був відновлений до версії %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "неуспішно" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "Файл %s не може бути відновлений до версії %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Старі версії недоступні" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Шлях не вказаний" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "Версії" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Відновити файл на попередню версію, натиснувши на кнопку Відновити" +msgstr "" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index d630772076..7c332156cf 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dmytro Dzubenko , 2012 -# skoptev , 2012 -# VicDeo , 2012 -# volodya327 , 2013 -# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -24,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Допомога" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Особисте" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Налаштування" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Користувачі" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Додатки" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Адмін" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP завантаження вимкнено." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Файли повинні бути завантаженні послідовно." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Повернутися до файлів" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Вибрані фали завеликі для генерування zip файлу." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "не може бути визначено" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Додаток не увімкнений" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Помилка автентифікації" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Строк дії токена скінчився. Будь ласка, перезавантажте сторінку." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Файли" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Текст" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Зображення" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "Встановіть ім'я адміністратора." +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "Встановіть пароль адміністратора." +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s введіть ім'я користувача бази даних." +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s введіть назву бази даних." +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s не можна використовувати крапки в назві бази даних" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s встановити хост бази даних." +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL ім'я користувача та/або пароль не дійсні" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "Вам потрібно ввести або існуючий обліковий запис або administrator." +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle ім'я користувача та/або пароль не дійсні" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL ім'я користувача та/або пароль не дійсні" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "Помилка БД: \"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Команда, що викликала проблему: \"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Користувач MySQL '%s'@'localhost' вже існує." +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "Видалити цього користувача з MySQL" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Користувач MySQL '%s'@'%%' вже існує" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "Видалити цього користувача з MySQL." +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL ім'я користувача та/або пароль не дійсні: %s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Будь ласка, перевірте інструкції по встановленню." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "секунди тому" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 хвилину тому" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d хвилин тому" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 годину тому" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d годин тому" +msgstr "" #: template.php:118 msgid "today" -msgstr "сьогодні" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "вчора" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d днів тому" +msgstr "" #: template.php:121 msgid "last month" -msgstr "минулого місяця" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d місяців тому" +msgstr "" #: template.php:123 msgid "last year" -msgstr "минулого року" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "роки тому" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s доступно. Отримати детальну інформацію" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "оновлено" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "перевірка оновлень відключена" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "Не вдалося знайти категорію \"%s\"" +msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 2c1bf343b9..1db1680244 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dmytro Dzubenko , 2012 -# skoptev , 2012 -# volodya327 , 2012-2013 -# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -23,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Не вдалося завантажити список з App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Помилка автентифікації" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -36,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Не вдалося змінити зображене ім'я" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Група вже існує" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Не вдалося додати групу" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "Не вдалося активувати програму. " +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Адресу збережено" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Невірна адреса" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Не вдалося видалити групу" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Не вдалося видалити користувача" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Мова змінена" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Помилковий запит" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Адміністратор не може видалити себе з групи адмінів" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Не вдалося додати користувача у групу %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Не вдалося видалити користувача із групи %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Не вдалося оновити програму. " +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Оновити до {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Вимкнути" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Включити" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Зачекайте, будь ласка..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Помилка" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Оновлюється..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Помилка при оновленні програми" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Оновлено" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Зберігаю..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "видалені" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "відмінити" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Неможливо видалити користувача" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Групи" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Адміністратор групи" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Видалити" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "додати групу" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Потрібно задати вірне ім'я користувача" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "Помилка при створенні користувача" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "Потрібно задати вірний пароль" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__language_name__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Попередження про небезпеку" +msgstr "" #: templates/admin.php:18 msgid "" @@ -184,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Ваш каталог з даними та Ваші файли можливо доступні з Інтернету. Файл .htaccess, наданий з ownCloud, не працює. Ми наполегливо рекомендуємо Вам налаштувати свій веб-сервер таким чином, щоб каталог data більше не був доступний, або перемістити каталог data за межі кореневого каталогу документів веб-сервера." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Попередження при Налаштуванні" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Будь ласка, перевірте інструкції по встановленню." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Модуль 'fileinfo' відсутній" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Локалізація не працює" +msgstr "" #: templates/admin.php:63 #, php-format @@ -221,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Цей сервер ownCloud не може встановити мову системи %s. Це означає, що можуть бути проблеми з деякими символами в іменах файлів. Ми наполегливо рекомендуємо встановити необхідні пакети у вашій системі для підтримки %s." +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Інтернет-з'єднання не працює" +msgstr "" #: templates/admin.php:78 msgid "" @@ -235,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "Цей сервер ownCloud не має під'єднання до Інтернету. Це означає, що деякі функції, такі як монтування зовнішніх накопичувачів, повідомлення про оновлення або встановлення допоміжних програм не працюють. Доступ до файлів ​​віддалено та відправка повідомлень електронною поштою також може не працювати. Ми пропонуємо увімкнути під'єднання до Інтернету для даного сервера, якщо ви хочете мати всі можливості ownCloud." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Виконати одне завдання для кожної завантаженої сторінки " +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php зареєстрований в службі webcron. Викликає cron.php сторінку в кореневому каталозі owncloud кожну хвилину по http." +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Використовується системний cron сервіс. Виклик cron.php файла з owncloud теки за допомогою системного cronjob раз на хвилину." +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "Спільний доступ" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "Увімкнути API спільного доступу" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Дозволити програмам використовувати API спільного доступу" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "Дозволити посилання" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Дозволити користувачам відкривати спільний доступ до елементів за допомогою посилань" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Дозволити перевідкривати спільний доступ" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Дозволити користувачам знову відкривати спільний доступ до елементів, які вже відкриті для доступу" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Дозволити користувачам відкривати спільний доступ для всіх" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "Безпека" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "Примусове застосування HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Зобов'язати клієнтів під'єднуватись до ownCloud через шифроване з'єднання." +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Будь ласка, під'єднайтесь до цього ownCloud за допомогою HTTPS, щоб увімкнути або вимкнути використання SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "Протокол" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "Рівень протоколювання" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "Більше" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "Менше" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Версія" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -340,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Розроблено ownCloud громадою, вихідний код має ліцензію AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Додати свою програму" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Більше програм" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Вибрати додаток" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Перегляньте сторінку програм на apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-licensed by " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Оновити" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Документація Користувача" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Документація Адміністратора" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Он-Лайн Документація" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Форум" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "БагТрекер" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Комерційна підтримка" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Ви використали %s із доступних %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Отримати додатки для синхронізації ваших файлів" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Показувати Майстер Налаштувань знову" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Пароль" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Ваш пароль змінено" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Не вдалося змінити Ваш пароль" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Поточний пароль" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Новий пароль" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Змінити пароль" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Показати Ім'я" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Ел.пошта" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Ваша адреса електронної пошти" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Введіть адресу електронної пошти для відновлення паролю" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Мова" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Допомогти з перекладом" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Ім'я Логіну" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Створити" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "сховище за замовчуванням" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Необмежено" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Інше" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Сховище" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "змінити зображене ім'я" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "встановити новий пароль" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "За замовчуванням" +msgstr "" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 2f5feed2a8..8031a206b5 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# пан Володимир , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -22,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Не вдалося видалити конфігурацію сервера" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Конфігурація вірна і зв'язок може бути встановлений ​​!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Конфігурація вірна, але встановити зв'язок не вдалося. Будь ласка, перевірте налаштування сервера і облікові дані." +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Конфігурація невірна. Подробиці подивіться, будь ласка, в журналі ownCloud." +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Видалення не було виконано" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Застосувати налаштування з останньої конфігурації сервера ?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Зберегти налаштування ?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Неможливо додати конфігурацію сервера" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Перевірка з'єднання пройшла успішно" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "Перевірка з'єднання завершилась неуспішно" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Ви дійсно бажаєте видалити поточну конфігурацію сервера ?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "Підтвердіть Видалення" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Увага: Застосунки user_ldap та user_webdavauth не сумісні. Ви можете зіткнутися з несподіваною поведінкою. Будь ласка, зверніться до системного адміністратора, щоб відключити одну з них." +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Увага: Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його." +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "Налаштування Сервера" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Додати налаштування Сервера" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Хост" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Можна не вказувати протокол, якщо вам не потрібен SSL. Тоді почніть з ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Базовий DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Один Base DN на одній строчці" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Ви можете задати Базовий DN для користувачів і груп на вкладинці Додатково" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "DN Користувача" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN клієнтського користувача для прив'язки, наприклад: uid=agent,dc=example,dc=com. Для анонімного доступу, залиште DN і Пароль порожніми." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Пароль" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Для анонімного доступу, залиште DN і Пароль порожніми." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Фільтр Користувачів, що під'єднуються" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Визначає фільтр, який застосовується при спробі входу. %%uid замінює ім'я користувача при вході." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "використовуйте %%uid заповнювач, наприклад: \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Фільтр Списку Користувачів" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Визначає фільтр, який застосовується при отриманні користувачів" +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "без будь-якого заповнювача, наприклад: \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Фільтр Груп" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Визначає фільтр, який застосовується при отриманні груп." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "без будь-якого заповнювача, наприклад: \"objectClass=posixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Налаштування З'єднання" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "Налаштування Активне" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Якщо \"галочка\" знята, ця конфігурація буде пропущена." +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Порт" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Сервер для резервних копій" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Вкажіть додатковий резервний сервер. Він повинен бути копією головного LDAP/AD сервера." +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Порт сервера для резервних копій" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Вимкнути Головний Сервер" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Коли увімкнуто, ownCloud буде приєднуватись лише до сервера з резервними копіями." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Використовуйте TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Не використовуйте це додатково для під'єднання до LDAP, бо виконано не буде." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Нечутливий до регістру LDAP сервер (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Вимкнути перевірку SSL сертифіката." +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Якщо з'єднання працює лише з цією опцією, імпортуйте SSL сертифікат LDAP сервера у ваший ownCloud сервер." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Не рекомендується, використовуйте лише для тестів." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "Час актуальності Кеша" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "в секундах. Зміна очищує кеш." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Налаштування Каталога" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Поле, яке відображає Ім'я Користувача" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Атрибут LDAP, який використовується для генерації імен користувачів ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Основне Дерево Користувачів" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Один Користувач Base DN на одній строчці" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Пошукові Атрибути Користувача" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Додатково; один атрибут на строчку" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Поле, яке відображає Ім'я Групи" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Атрибут LDAP, який використовується для генерації імен груп ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Основне Дерево Груп" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Одна Група Base DN на одній строчці" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Пошукові Атрибути Групи" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Асоціація Група-Член" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Спеціальні Атрибути" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "Поле Квоти" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "Квота за замовчанням" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "в байтах" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "Поле Ел. пошти" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "Правило іменування домашньої теки користувача" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Залиште порожнім для імені користувача (за замовчанням). Інакше, вкажіть атрибут LDAP/AD." +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "Тестове налаштування" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Допомога" +msgstr "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 2439188cfc..8bf9d6b225 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# M. Adil Javed , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -48,7 +47,7 @@ msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "شامل کرنے کے لیے کوئی زمرہ نہیں؟" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format @@ -74,7 +73,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "ختم کرنے کے لیے کسی زمرہ جات کا انتخاب نہیں کیا گیا۔" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -111,55 +110,55 @@ msgstr "" #: js/config.php:45 msgid "January" -msgstr "جنوری" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "فرورئ" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "مارچ" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "اپریل" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "مئی" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "جون" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "جولائی" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "اگست" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "ستمبر" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "اکتوبر" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "نومبر" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "دسمبر" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "سیٹینگز" +msgstr "" #: js/js.js:718 msgid "seconds ago" @@ -215,23 +214,23 @@ msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "اوکے" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "منسوخ کریں" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "منتخب کریں" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "ہاں" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "نہیں" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -244,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "ایرر" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -264,15 +263,15 @@ msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "شئیرنگ کے دوران ایرر" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "شئیرنگ ختم کرنے کے دوران ایرر" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "اختیارات کو تبدیل کرنے کے دوران ایرر" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" @@ -284,19 +283,19 @@ msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "اس کے ساتھ شئیر کریں" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "لنک کے ساتھ شئیر کریں" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "پاسورڈ سے محفوظ کریں" +msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "پاسورڈ" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -308,11 +307,11 @@ msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "تاریخ معیاد سیٹ کریں" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "تاریخ معیاد" +msgstr "" #: js/share.js:211 msgid "Share via email:" @@ -320,11 +319,11 @@ msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "کوئی لوگ نہیں ملے۔" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" @@ -332,35 +331,35 @@ msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "شئیرنگ ختم کریں" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "ایڈٹ کر سکے" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "اسیس کنٹرول" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "نیا بنائیں" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "اپ ڈیٹ" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "ختم کریں" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "شئیر کریں" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "پاسورڈ سے محفوظ کیا گیا ہے" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" @@ -391,15 +390,15 @@ msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "اون کلاؤڈ پاسورڈ ری سیٹ" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "اپنا پاسورڈ ری سیٹ کرنے کے لیے اس لنک پر کلک کریں۔ {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "آپ ای میل کے ذریعے اپنے پاسورڈ ری سیٹ کا لنک موصول کریں گے" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -410,65 +409,65 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" -msgstr "یوزر نیم" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "ری سیٹ کی درخواست کریں" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "آپ کا پاسورڈ ری سیٹ کر دیا گیا ہے" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "لاگ ان صفحے کی طرف" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "نیا پاسورڈ" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "ری سیٹ پاسورڈ" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "ذاتی" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "یوزرز" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "ایپز" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "ایڈمن" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "مدد" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "پہنچ کی اجازت نہیں" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "نہیں مل سکا" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "زمرہ جات کی تدوین کریں" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "شامل کریں" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -510,95 +509,95 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "ایک ایڈمن اکاؤنٹ بنائیں" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "ایڈوانسڈ" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "ڈیٹا فولڈر" +msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" -msgstr "ڈیٹا بیس کونفگر کریں" +msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" -msgstr "استعمال ہو گا" +msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" -msgstr "ڈیٹابیس یوزر" +msgstr "" -#: templates/installation.php:143 +#: templates/installation.php:144 msgid "Database password" -msgstr "ڈیٹابیس پاسورڈ" +msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database name" -msgstr "ڈیٹابیس کا نام" +msgstr "" -#: templates/installation.php:158 +#: templates/installation.php:159 msgid "Database tablespace" -msgstr "ڈیٹابیس ٹیبل سپیس" +msgstr "" -#: templates/installation.php:165 +#: templates/installation.php:166 msgid "Database host" -msgstr "ڈیٹابیس ہوسٹ" +msgstr "" -#: templates/installation.php:171 +#: templates/installation.php:172 msgid "Finish setup" -msgstr "سیٹ اپ ختم کریں" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "آپ کے اختیار میں ویب سروسیز" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "لاگ آؤٹ" +msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" -msgstr "کیا آپ پاسورڈ بھول گئے ہیں؟" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" #: templates/login.php:41 -msgid "remember" -msgstr "یاد رکھیں" - -#: templates/login.php:43 msgid "Log in" -msgstr "لاگ ان" +msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "پچھلا" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "اگلا" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 2fe3e109a4..679d1f1f06 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 15:44+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -189,7 +189,7 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "ایرر" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index b5f46680a0..155fc654d0 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index 691d297995..0069388d23 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -99,7 +99,7 @@ msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "یوزرز" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index 9fdf3a11ba..95743dcca6 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "پاسورڈ" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" @@ -45,4 +45,4 @@ msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "آپ کے اختیار میں ویب سروسیز" +msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index af2b0dbd1a..744a798f17 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "ایرر" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" diff --git a/l10n/ur_PK/files_versions.po b/l10n/ur_PK/files_versions.po index 7d34dde439..3cd19f481f 100644 --- a/l10n/ur_PK/files_versions.po +++ b/l10n/ur_PK/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 16489f21cc..a596fe5ec1 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,27 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "مدد" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "ذاتی" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "سیٹینگز" +msgstr "" #: app.php:385 msgid "Users" -msgstr "یوزرز" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "ایپز" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "ایڈمن" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 8ec75cd514..60beb9293d 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -106,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "ایرر" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -401,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "پاسورڈ" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -417,7 +417,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "نیا پاسورڈ" +msgstr "" #: templates/personal.php:44 msgid "Change password" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 70d82c44bd..16019a7215 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "پاسورڈ" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "مدد" +msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 74db989174..156854ec00 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -3,18 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# khanhnd , 2012 -# mattheu_9x , 2012 -# mattheu_9x , 2012 -# saosangm , 2013 -# Sơn Nguyễn , 2012 -# Sơn Nguyễn , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -26,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "%s chia sẻ tập tin này cho bạn" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "%s chia sẻ thư mục này cho bạn" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Người dùng %s chia sẻ tập tin \"%s\" cho bạn .Bạn có thể tải tại đây : %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Người dùng %s chia sẻ thư mục \"%s\" cho bạn .Bạn có thể tải tại đây : %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Kiểu hạng mục không được cung cấp." +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Không có danh mục được thêm?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Danh mục này đã tồn tại: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Loại đối tượng không được cung cấp." +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID không được cung cấp." +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Lỗi thêm %s vào mục yêu thích." +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Không có thể loại nào được chọn để xóa." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Lỗi xóa %s từ mục yêu thích." +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "Chủ nhật" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "Thứ 2" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "Thứ 3" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "Thứ 4" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "Thứ 5" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "Thứ " +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "Thứ 7" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "Tháng 1" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "Tháng 2" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "Tháng 3" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "Tháng 4" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "Tháng 5" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "Tháng 6" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "Tháng 7" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "Tháng 8" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "Tháng 9" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "Tháng 10" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "Tháng 11" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "Tháng 12" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "Cài đặt" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "vài giây trước" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 phút trước" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} phút trước" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 giờ trước" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} giờ trước" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "hôm nay" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "hôm qua" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} ngày trước" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "tháng trước" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} tháng trước" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "tháng trước" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "năm trước" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "năm trước" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "Đồng ý" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Hủy" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "Chọn" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Có" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "Không" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Loại đối tượng không được chỉ định." +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -249,236 +243,236 @@ msgstr "Loại đối tượng không được chỉ định." #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "Lỗi" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Tên ứng dụng không được chỉ định." +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Tập tin cần thiết {file} không được cài đặt!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Được chia sẻ" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Chia sẻ" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "Lỗi trong quá trình chia sẻ" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Lỗi trong quá trình gỡ chia sẻ" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "Lỗi trong quá trình phân quyền" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "Đã được chia sẽ với bạn và nhóm {group} bởi {owner}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "Đã được chia sẽ bởi {owner}" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "Chia sẻ với" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "Chia sẻ với liên kết" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "Mật khẩu bảo vệ" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "Mật khẩu" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "Liên kết email tới cá nhân" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "Gởi" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "Đặt ngày kết thúc" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "Ngày kết thúc" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "Chia sẻ thông qua email" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "Không tìm thấy người nào" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "Chia sẻ lại không được cho phép" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "Đã được chia sẽ trong {item} với {user}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "Gỡ bỏ chia sẻ" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "có thể chỉnh sửa" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "quản lý truy cập" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "tạo" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "cập nhật" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "xóa" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "chia sẻ" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "Mật khẩu bảo vệ" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Lỗi không thiết lập ngày kết thúc" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "Lỗi cấu hình ngày kết thúc" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "Đang gởi ..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Email đã được gửi" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Cập nhật không thành công . Vui lòng thông báo đến Cộng đồng ownCloud ." +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Cập nhật thành công .Hệ thống sẽ đưa bạn tới ownCloud." +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Khôi phục mật khẩu Owncloud " +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Vui lòng kiểm tra Email để khôi phục lại mật khẩu." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Thiết lập lại email gởi." +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Yêu cầu của bạn không thành công !" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "Tên người dùng" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Yêu cầu thiết lập lại " +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Mật khẩu của bạn đã được khôi phục" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Trang đăng nhập" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Mật khẩu mới" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Khôi phục mật khẩu" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Cá nhân" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Người sử dụng" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Ứng dụng" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Quản trị" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Giúp đỡ" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Truy cập bị cấm" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Không tìm thấy Clound" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Sửa thể loại" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Thêm" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Cảnh bảo bảo mật" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -492,120 +486,120 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Không an toàn ! chức năng random number generator đã có sẵn ,vui lòng bật PHP OpenSSL extension." +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Nếu không có random number generator , Hacker có thể thiết lập lại mật khẩu và chiếm tài khoản của bạn." +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Thư mục và file dữ liệu của bạn có thể được truy cập từ internet bởi vì file .htaccess không hoạt động" +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Để biết thêm cách cấu hình máy chủ của bạn, xin xem tài liệu." +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Tạo một tài khoản quản trị" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "Nâng cao" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "Thư mục dữ liệu" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Cấu hình cơ sở dữ liệu" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "được sử dụng" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "Người dùng cơ sở dữ liệu" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "Mật khẩu cơ sở dữ liệu" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "Tên cơ sở dữ liệu" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Cơ sở dữ liệu tablespace" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "Database host" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "Cài đặt hoàn tất" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "các dịch vụ web dưới sự kiểm soát của bạn" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "Đăng xuất" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Tự động đăng nhập đã bị từ chối !" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Nếu bạn không thay đổi mật khẩu gần đây của bạn, tài khoản của bạn có thể gặp nguy hiểm!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài khoản của bạn một lần nữa." +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "Bạn quên mật khẩu ?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "ghi nhớ" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Đăng nhập" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "Đăng nhập khác" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "Lùi lại" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "Kế tiếp" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Cập nhật ownCloud lên phiên bản %s, có thể sẽ mất thời gian" +msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 311cb3cbbd..1202b0bcc4 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -3,17 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# khanhnd , 2012 -# mattheu_9x , 2012 -# mattheu_9x , 2012 -# saosangm , 2013 -# Sơn Nguyễn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -25,115 +20,115 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Không thể di chuyển %s - Đã có tên file này trên hệ thống" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Không thể di chuyển %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Không thể đổi tên file" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Không có lỗi, các tập tin đã được tải lên thành công" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Kích thước những tập tin tải lên vượt quá MAX_FILE_SIZE đã được quy định" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Tập tin tải lên mới chỉ tải lên được một phần" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "Không có tập tin nào được tải lên" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Không tìm thấy thư mục tạm" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "Không thể ghi " +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Không đủ không gian lưu trữ" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "Thư mục không hợp lệ" +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "Tập tin" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "Chia sẻ" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Xóa vĩnh vễn" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "Xóa" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "Sửa tên" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Chờ" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} đã tồn tại" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "thay thế" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "tên gợi ý" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "hủy" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "đã thay thế {new_name} bằng {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "lùi lại" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "thực hiện việc xóa" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 tệp tin đang được tải lên" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -141,35 +136,35 @@ msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' là một tên file không hợp lệ" +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Tên file không được rỗng" +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Your storage is full, files can not be updated or synced anymore!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Your download is being prepared. This might take some time if the files are big." +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte" +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -177,112 +172,112 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "Hủy tải lên" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL không được để trống." +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "Lỗi" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "Tên" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "Kích cỡ" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "Thay đổi" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 thư mục" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} thư mục" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 tập tin" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} tập tin" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "Tải lên" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "Xử lý tập tin" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Kích thước tối đa " +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "tối đa cho phép:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Cần thiết cho tải nhiều tập tin và thư mục." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Cho phép ZIP-download" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 là không giới hạn" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Kích thước tối đa cho các tập tin ZIP" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Lưu" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Mới" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Tập tin văn bản" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Thư mục" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "Từ liên kết" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "File đã bị xóa" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Hủy upload" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -290,34 +285,34 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "Tải xuống" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "Không chia sẽ" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "Tập tin tải lên quá lớn" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Tập tin đang được quét ,vui lòng chờ." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "Hiện tại đang quét" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index 76448eaa08..c3e13aa34f 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sao sang , 2013. -# Sơn Nguyễn , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Mã hóa" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "Mã hóa file đã mở" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Loại file sau sẽ không được mã hóa" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Việc mã hóa không bao gồm loại file sau" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "Không có gì hết" +msgstr "" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 3ad70cf8a4..2543e9699b 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mattheu_9x , 2012 -# saosangm , 2013 -# Sơn Nguyễn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -22,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Đã cấp quyền truy cập" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Lỗi cấu hình lưu trữ Dropbox " +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Cấp quyền truy cập" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Xin vui lòng cung cấp một ứng dụng Dropbox hợp lệ và mã bí mật." +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "Lỗi cấu hình lưu trữ Google Drive" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Cảnh báo: \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó." +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Cảnh báo: FTP trong PHP chưa được cài đặt hoặc chưa được mở. Mount FTP shares là không thể. Xin hãy yêu cầu quản trị hệ thống của bạn cài đặt nó." +msgstr "" #: lib/config.php:437 msgid "" @@ -62,11 +59,11 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "Lưu trữ ngoài" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "Tên thư mục" +msgstr "" #: templates/settings.php:10 msgid "External storage" @@ -74,15 +71,15 @@ msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "Cấu hình" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "Tùy chọn" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "Áp dụng" +msgstr "" #: templates/settings.php:33 msgid "Add storage" @@ -90,37 +87,37 @@ msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "không" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "Tất cả người dùng" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Nhóm" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "Người dùng" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Xóa" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Kích hoạt tính năng lưu trữ ngoài" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Cho phép người dùng kết nối với lưu trữ riêng bên ngoài của họ" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Chứng chỉ SSL root" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "Nhập Root Certificate" +msgstr "" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index baddc87930..85e2ed2a75 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Sơn Nguyễn , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Mật khẩu" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Xác nhận" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s đã chia sẻ thư mục %s với bạn" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s đã chia sẻ tập tin %s với bạn" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Tải về" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "Không có xem trước cho" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "dịch vụ web dưới sự kiểm soát của bạn" +msgstr "" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 83efb8ffba..68843833cc 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sao sang , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Không thể óa %s vĩnh viễn" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "Không thể khôi phục %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "thực hiện phục hồi" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "Lỗi" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "xóa file vĩnh viễn" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "Xóa vĩnh vễn" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "Tên" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "Đã xóa" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 thư mục" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} thư mục" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 tập tin" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} tập tin" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Không có gì ở đây. Thùng rác của bạn rỗng!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "Khôi phục" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Xóa" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "File đã xóa" +msgstr "" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index 207ecde6dc..19d95ddb45 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# sao sang , 2013. -# Sơn Nguyễn , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -23,33 +20,33 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Không thể khôi phục: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "thành công" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "File %s đã được khôi phục về phiên bản %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "Thất bại" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "File %s không thể khôi phục về phiên bản %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "Không có phiên bản cũ nào" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "Không chỉ ra đường dẫn rõ ràng" +msgstr "" #: js/versions.js:6 msgid "Versions" @@ -57,4 +54,4 @@ msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Khôi phục một file về phiên bản trước đó bằng cách click vào nút Khôi phục tương ứng" +msgstr "" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index fc813abbb5..48a6dd89ee 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -3,16 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mattheu_9x , 2012 -# mattheu_9x , 2012 -# saosangm , 2013 -# Sơn Nguyễn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -23,71 +19,71 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "Giúp đỡ" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "Cá nhân" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "Cài đặt" +msgstr "" #: app.php:385 msgid "Users" -msgstr "Người dùng" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "Ứng dụng" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "Quản trị" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "Tải về ZIP đã bị tắt." +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "Tập tin cần phải được tải về từng người một." +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "Trở lại tập tin" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "Tập tin được chọn quá lớn để tạo tập tin ZIP." +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "không thể phát hiện được" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "Ứng dụng không được BẬT" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "Lỗi xác thực" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Mã Token đã hết hạn. Hãy tải lại trang." +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "Các tập tin" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Văn bản" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "Hình ảnh" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -117,142 +113,142 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "1 giây trước" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 phút trước" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d phút trước" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 giờ trước" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d giờ trước" +msgstr "" #: template.php:118 msgid "today" -msgstr "hôm nay" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "hôm qua" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d ngày trước" +msgstr "" #: template.php:121 msgid "last month" -msgstr "tháng trước" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d tháng trước" +msgstr "" #: template.php:123 msgid "last year" -msgstr "năm trước" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "năm trước" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s có sẵn. xem thêm ở đây" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "đến ngày" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "đã TĂT chức năng cập nhật " +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "không thể tìm thấy mục \"%s\"" +msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 1072b980fa..43ec3860e4 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -3,19 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# khanhnd , 2012 -# mattheu_9x , 2012 -# mattheu_9x , 2012 -# saosangm , 2013 -# Sơn Nguyễn , 2012 -# Sơn Nguyễn , 2012 -# vlinhd11 , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -26,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Không thể tải danh sách ứng dụng từ App Store" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Lỗi xác thực" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -39,105 +32,105 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Không thể thay đổi tên hiển thị" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "Nhóm đã tồn tại" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Không thể thêm nhóm" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "không thể kích hoạt ứng dụng." +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Lưu email" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Email không hợp lệ" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Không thể xóa nhóm" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Không thể xóa người dùng" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Ngôn ngữ đã được thay đổi" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Yêu cầu không hợp lệ" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Quản trị viên không thể loại bỏ chính họ khỏi nhóm quản lý" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Không thể thêm người dùng vào nhóm %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Không thể xóa người dùng từ nhóm %s" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "Không thể cập nhật ứng dụng" +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Cập nhật lên {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "Tắt" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Bật" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "Xin hãy đợi..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "Lỗi" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "Đang cập nhật..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "Lỗi khi cập nhật ứng dụng" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "Đã cập nhật" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "Đang tiến hành lưu ..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "đã xóa" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "lùi lại" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" @@ -146,15 +139,15 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "Nhóm" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Nhóm quản trị" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "Xóa" +msgstr "" #: js/users.js:262 msgid "add group" @@ -174,11 +167,11 @@ msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__Ngôn ngữ___" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "Cảnh bảo bảo mật" +msgstr "" #: templates/admin.php:18 msgid "" @@ -187,7 +180,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ mạng. Tập tin .htaccess do ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ web để thư mục dữ liệu không còn bị truy cập hoặc bạn nên di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ." +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" @@ -325,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "hơn" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "ít" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "Phiên bản" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -343,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "Được phát triển bởi cộng đồng ownCloud, mã nguồn đã được cấp phép theo chuẩn AGPL." +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "Thêm ứng dụng của bạn" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "Nhiều ứng dụng hơn" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "Chọn một ứng dụng" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "Xem nhiều ứng dụng hơn tại apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-Giấy phép được cấp bởi " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "Cập nhật" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "Tài liệu người sử dụng" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Tài liệu quản trị" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "Tài liệu trực tuyến" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "Diễn đàn" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Hệ ghi nhận lỗi" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Hỗ trợ có phí" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Bạn đã sử dụng %s có sẵn %s " +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Nhận ứng dụng để đồng bộ file của bạn" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "Hiện lại việc chạy đồ thuật khởi đầu" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "Mật khẩu" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "Mật khẩu của bạn đã được thay đổi." +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Không thể đổi mật khẩu" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "Mật khẩu cũ" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "Mật khẩu mới " +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "Đổi mật khẩu" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "Tên hiển thị" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "Email của bạn" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "Ngôn ngữ" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "Hỗ trợ dịch thuật" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Sử dụng địa chỉ này để kết nối ownCloud của bạn trong trình quản lý file của bạn" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "Tên đăng nhập" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "Tạo" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "Bộ nhớ mặc định" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "Không giới hạn" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "Khác" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "Bộ nhớ" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "Thay đổi tên hiển thị" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "đặt mật khẩu mới" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "Mặc định" +msgstr "" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 49365ead0b..89e32e6344 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# sao sang , 2013. -# Sơn Nguyễn , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -42,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "Xóa thất bại" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -95,16 +92,16 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "Máy chủ" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Bạn có thể bỏ qua các giao thức, ngoại trừ SSL. Sau đó bắt đầu với ldaps://" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "DN cơ bản" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" @@ -112,70 +109,70 @@ msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Bạn có thể chỉ định DN cơ bản cho người dùng và các nhóm trong tab Advanced" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "Người dùng DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "Các DN của người sử dụng đã được thực hiện, ví dụ như uid =agent , dc = example, dc = com. Để truy cập nặc danh ,DN và mật khẩu trống." +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "Mật khẩu" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Cho phép truy cập nặc danh , DN và mật khẩu trống." +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "Lọc người dùng đăng nhập" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Xác định các bộ lọc để áp dụng, khi đăng nhập . uid%% thay thế tên người dùng trong các lần đăng nhập." +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "Lọc danh sách thành viên" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Xác định các bộ lọc để áp dụng, khi người dụng sử dụng." +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "mà không giữ chỗ nào, ví dụ như \"objectClass = person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "Bộ lọc nhóm" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Xác định các bộ lọc để áp dụng, khi nhóm sử dụng." +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "mà không giữ chỗ nào, ví dụ như \"objectClass = osixGroup\"." +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "Connection Settings" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" @@ -187,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "Cổng" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -201,41 +198,41 @@ msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Cổng sao lưu (Replica)" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "Tắt máy chủ chính" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "When switched on, ownCloud will only connect to the replica server." +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "Sử dụng TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "Trường hợp insensitve LDAP máy chủ (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "Tắt xác thực chứng nhận SSL" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Nếu kết nối chỉ hoạt động với tùy chọn này, vui lòng import LDAP certificate SSL trong máy chủ ownCloud của bạn." +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "Không khuyến khích, Chỉ sử dụng để thử nghiệm." +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -243,23 +240,23 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "trong vài giây. Một sự thay đổi bộ nhớ cache." +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Directory Settings" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "Hiển thị tên người sử dụng" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Các thuộc tính LDAP sử dụng để tạo tên người dùng ownCloud." +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "Cây người dùng cơ bản" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" @@ -267,23 +264,23 @@ msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "User Search Attributes" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Optional; one attribute per line" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "Hiển thị tên nhóm" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Các thuộc tính LDAP sử dụng để tạo các nhóm ownCloud." +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "Cây nhóm cơ bản" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" @@ -291,15 +288,15 @@ msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Group Search Attributes" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "Nhóm thành viên Cộng đồng" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Special Attributes" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" @@ -311,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "Theo Byte" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -325,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Để trống tên người dùng (mặc định). Nếu không chỉ định thuộc tính LDAP/AD" +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -333,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "Giúp đỡ" +msgstr "" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 73282c1f37..e70e1ec268 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# bluehattree , 2012 -# kopisee , 2013 -# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -23,45 +20,45 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "用户 %s 与您分享了一个文件" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "用户 %s 与您分享了一个文件夹" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "用户 %s 与您分享了文件“%s”。点击下载:%s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "用户 %s 与您分享了文件夹“%s”。点击下载:%s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "未选择分类类型。" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "没有分类添加了?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "此分类已存在:%s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "未选择对象类型。" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 @@ -76,7 +73,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "没有选者要删除的分类." +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -85,160 +82,160 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "星期天" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "星期一" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "星期二" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "星期三" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "星期四" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "星期五" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "星期六" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "一月" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "二月" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "三月" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "四月" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "五月" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "六月" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "七月" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "八月" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "九月" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "十月" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "十一月" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "十二月" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "设置" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "秒前" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 分钟前" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} 分钟前" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1小时前" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours}小时前" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "今天" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "昨天" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} 天前" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "上个月" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months}月前" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "月前" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "去年" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "年前" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "好的" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "取消" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "选择" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "是" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "否" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "未指定对象类型。" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -246,236 +243,236 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "错误" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "未指定应用名称。" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "未安装所需要的文件 {file} !" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "已分享" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "分享" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "分享出错" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "取消分享出错" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "变更权限出错" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "由 {owner} 与您和 {group} 群组分享" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "由 {owner} 与您分享" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "分享" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "分享链接" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "密码保护" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "密码" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "面向个人的电子邮件链接" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "发送" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "设置失效日期" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "失效日期" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "通过电子邮件分享:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "查无此人" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "不允许重复分享" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "已经与 {user} 在 {item} 中分享" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "取消分享" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "可编辑" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "访问控制" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "创建" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "更新" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "删除" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "分享" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "密码保护" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "取消设置失效日期出错" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "设置失效日期出错" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "发送中……" +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "电子邮件已发送" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "升级失败。请向ownCloud社区报告此问题。" +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "升级成功。现在为您跳转到ownCloud。" +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "私有云密码重置" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "使用下面的链接来重置你的密码:{link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "你将会收到一个重置密码的链接" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "重置邮件已发送。" +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "请求失败!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "用户名" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "要求重置" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "你的密码已经被重置了" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "转至登陆页面" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "新密码" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "重置密码" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "个人的" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "用户" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "应用程序" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "管理" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "帮助" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "禁止访问" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "云 没有被找到" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "编辑分类" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "添加" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "安全警告" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -483,126 +480,126 @@ msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "请升级您的PHP版本以稳定运行ownCloud。" +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "没有安全随机码生成器,请启用 PHP OpenSSL 扩展。" +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "没有安全随机码生成器,黑客可以预测密码重置令牌并接管你的账户。" +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "因为.htaccess文件无效,您的数据文件夹及文件可能可以在互联网上访问。" +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "要获得大概如何配置您的服务器的相关信息,参见说明文档。" +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "建立一个 管理帐户" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "进阶" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "数据存放文件夹" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "配置数据库" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "将会使用" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "数据库用户" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "数据库密码" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "数据库用户名" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "数据库表格空间" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "数据库主机" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "完成安装" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "你控制下的网络服务" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "注销" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "自动登录被拒绝!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "如果您最近没有修改您的密码,那您的帐号可能被攻击了!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "请修改您的密码以保护账户。" +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "忘记密码?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "备忘" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "登陆" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "备选登录" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "后退" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "前进" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "ownCloud正在升级至 %s 版,这可能需要一点时间。" +msgstr "" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 42a5310baf..fcfde87fd8 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# bluehattree , 2012 -# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -35,11 +33,11 @@ msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "没有上传文件。未知错误" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "没有任何错误,文件上传成功了" +msgstr "" #: ajax/upload.php:27 msgid "" @@ -50,23 +48,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "上传的文件超过了HTML表单指定的MAX_FILE_SIZE" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "文件只有部分被上传" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "没有上传完成的文件" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "丢失了一个临时文件夹" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "写磁盘失败" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" @@ -78,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "文件" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "分享" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -90,39 +88,39 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "删除" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "重命名" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "Pending" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} 已存在" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "替换" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "推荐名称" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "取消" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "已用 {old_name} 替换 {new_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "撤销" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" @@ -130,7 +128,7 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 个文件正在上传" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -166,7 +164,7 @@ msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大小为0" +msgstr "" #: js/files.js:272 msgid "Not enough space available" @@ -174,16 +172,16 @@ msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "上传取消了" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "文件正在上传。关闭页面会取消上传。" +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "网址不能为空。" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -191,87 +189,87 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "出错" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "名字" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "大小" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "修改日期" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 个文件夹" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} 个文件夹" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 个文件" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} 个文件" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "上传" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "文件处理中" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "最大上传大小" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "最大可能" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "需要多文件和文件夹下载." +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "支持ZIP下载" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0是无限的" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "最大的ZIP文件输入大小" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "保存" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "新建" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "文本文档" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "文件夹" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "来自链接" +msgstr "" #: templates/index.php:42 msgid "Deleted files" @@ -279,7 +277,7 @@ msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "取消上传" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." @@ -287,33 +285,33 @@ msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "这里没有东西.上传点什么!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "下载" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "取消共享" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "上传的文件太大了" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "你正在试图上传的文件超过了此服务器支持的最大的文件大小." +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "正在扫描文件,请稍候." +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "正在扫描" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 878e5e2664..a82e0515dc 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -20,7 +19,7 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "加密" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "无" +msgstr "" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index b0d5fc841d..0a9e4cd7d6 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# kopisee , 2013 -# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -21,36 +19,36 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "已授予权限" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "配置 Dropbox 存储出错" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "授予权限" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "请提供一个有效的 Dropbox app key 和 secret。" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "配置 Google Drive 存储失败" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "注意:“SMB客户端”未安装。CIFS/SMB分享不可用。请向您的系统管理员请求安装该客户端。" +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "注意:PHP的FTP支持尚未启用或未安装。FTP分享不可用。请向您的系统管理员请求安装。" +msgstr "" #: lib/config.php:437 msgid "" @@ -61,65 +59,65 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "外部存储" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "文件夹名" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "外部存储" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "配置" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "选项" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "可应用" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "扩容" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "未设置" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "所有用户" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "群组" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "用户" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "删除" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "启用用户外部存储" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "允许用户挂载他们的外部存储" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL 根证书" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "导入根证书" +msgstr "" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 08809924df..d829883a7b 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "密码" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "提交" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s 与您分享了文件夹 %s" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s 与您分享了文件 %s" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "下载" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "没有预览可用于" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "您控制的网络服务" +msgstr "" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 1706c782c5..c77cdac36f 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "出错" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "名称" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 个文件夹" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} 个文件夹" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 个文件" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} 个文件" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "删除" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 346dfc9063..5eaa06c1e3 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# HO Gin Wang , 2013. -# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "无法恢复:%s" +msgstr "" #: history.php:40 msgid "success" -msgstr "成功" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "文件 %s 已被恢复为 %s 的版本" +msgstr "" #: history.php:49 msgid "failure" -msgstr "失败" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "文件 %s 无法恢复为 %s 的版本" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "没有可用的旧版本" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "未指定路径" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "版本" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "请点击“恢复”按钮把文件恢复到早前的版本" +msgstr "" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index b8451f60b6..e7530ac2b1 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -20,43 +19,43 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "帮助" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "私人" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "设置" +msgstr "" #: app.php:385 msgid "Users" -msgstr "用户" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "程序" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "管理员" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP 下载已关闭" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "需要逐个下载文件。" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "返回到文件" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "选择的文件太大而不能生成 zip 文件。" +msgstr "" #: helper.php:228 msgid "couldn't be determined" @@ -64,27 +63,27 @@ msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "应用未启用" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "验证错误" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "会话过期。请刷新页面。" +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "文件" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "文本" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "图片" +msgstr "" #: setup.php:34 msgid "Set an admin username." @@ -114,92 +113,92 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "请双击安装向导。" +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "秒前" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 分钟前" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d 分钟前" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1小时前" +msgstr "" #: template.php:117 #, php-format @@ -208,20 +207,20 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "今天" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "昨天" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d 天前" +msgstr "" #: template.php:121 msgid "last month" -msgstr "上个月" +msgstr "" #: template.php:122 #, php-format @@ -230,24 +229,24 @@ msgstr "" #: template.php:123 msgid "last year" -msgstr "去年" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "年前" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s 不可用。获知 详情" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "最新" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "更新检测已禁用" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index a3fb6e17b9..839d91a6b8 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# bluehattree , 2012 -# kopisee , 2013 -# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -22,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "不能从App Store 中加载列表" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "认证错误" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -35,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "无法更改显示名称" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "群组已存在" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "未能添加群组" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "未能启用应用" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email 保存了" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "非法Email" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "未能删除群组" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "未能删除用户" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "语言改变了" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "非法请求" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "管理员无法将自己从管理组中移除" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "未能添加用户到群组 %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "未能将用户从群组 %s 移除" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "应用无法升级。" +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "升级至{appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "禁用" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "启用" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "请稍候……" +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "出错" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "升级中……" +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "应用升级时出现错误" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "已升级" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "保存中..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "删除" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "撤销" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "无法移除用户" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "组" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "群组管理员" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "删除" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "添加群组" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "请填写有效用户名" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "新增用户时出现错误" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "请填写有效密码" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "Chinese" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "安全警告" +msgstr "" #: templates/admin.php:18 msgid "" @@ -183,22 +180,22 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。" +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "配置注意" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "请双击安装向导。" +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -212,7 +209,7 @@ msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "区域设置未运作" +msgstr "" #: templates/admin.php:63 #, php-format @@ -224,7 +221,7 @@ msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "互联网连接未运作" +msgstr "" #: templates/admin.php:78 msgid "" @@ -238,7 +235,7 @@ msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" @@ -262,48 +259,48 @@ msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "开启分享API" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "允许应用使用分享API" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "允许链接" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "允许用户通过链接共享内容" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "允许转帖" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "允许用户再次共享已共享的内容" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "允许用户向任何人分享" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "只允许用户向所在群组中的其他用户分享" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "安全" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "强制HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "强制客户端通过加密连接与ownCloud连接" +msgstr "" #: templates/admin.php:185 msgid "" @@ -321,15 +318,15 @@ msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "更多" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "更少" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "版本" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -339,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。" +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "添加你的应用程序" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "更多应用" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "选择一个程序" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "在owncloud.com上查看应用程序" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "授权协议 " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "更新" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "用户文档" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "管理员文档" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "在线说明文档" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "论坛" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bug追踪者" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "商业支持" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "您已使用%s/%s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "获取应用并同步您的文件" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "再次显示首次运行向导" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "密码" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "您的密码以变更" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "不能改变你的密码" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "现在的密码" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "新密码" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "改变密码" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "显示名称" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "Email" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "你的email地址" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "输入一个邮箱地址以激活密码恢复功能" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "语言" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "帮助翻译" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "使用此地址来在您的文件管理器中连接您的ownCloud" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "登录名" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "新建" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "默认容量" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "无限制" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "其他的" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "容量" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "更改显示名称" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "设置新的密码" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "默认" +msgstr "" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 2de59e1c07..ff9c29edaa 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -40,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "删除失败" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -93,16 +92,16 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "主机" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "基本判别名" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" @@ -110,66 +109,66 @@ msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "您可以在高级选项卡中为用户和群组指定基本判别名" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "用户判别名" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。" +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "密码" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "匿名访问请留空判别名和密码。" +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "用户登录过滤器" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "定义尝试登录时要应用的过滤器。用 %%uid 替换登录操作中使用的用户名。" +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "使用 %%uid 占位符,例如 \"uid=%%uid\"" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "用户列表过滤器" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "定义撷取用户时要应用的过滤器。" +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "不能使用占位符,例如 \"objectClass=person\"。" +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "群组过滤器" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "定义撷取群组时要应用的过滤器" +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "不能使用占位符,例如 \"objectClass=posixGroup\"。" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" @@ -185,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "端口" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -211,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "使用 TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -219,21 +218,21 @@ msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "大小写不敏感的 LDAP 服务器 (Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "关闭 SSL 证书校验。" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。" +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "不推荐,仅供测试" +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" @@ -241,7 +240,7 @@ msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "以秒计。修改会清空缓存。" +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" @@ -249,15 +248,15 @@ msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "用户显示名称字段" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "用于生成用户的 ownCloud 名称的 LDAP 属性。" +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "基本用户树" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" @@ -273,15 +272,15 @@ msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "群组显示名称字段" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "用于生成群组的 ownCloud 名称的 LDAP 属性。" +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "基本群组树" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" @@ -293,7 +292,7 @@ msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "群组-成员组合" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" @@ -309,7 +308,7 @@ msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "以字节计" +msgstr "" #: templates/settings.php:94 msgid "Email Field" @@ -323,7 +322,7 @@ msgstr "" msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。" +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" @@ -331,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "帮助" +msgstr "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 6e259b6cfe..480ed263f7 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -3,21 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# hanfeng , 2012 -# Dianjin Wang <1132321739qq@gmail.com>, 2012 -# Phoenix Nemo <>, 2012 -# leonfeng , 2013 -# waterone , 2012 -# Xuetian Weng , 2013 -# Xuetian Weng , 2011, 2012 -# zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: zhangmin \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "用户 %s 与您共享了一个文件" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "用户 %s 与您共享了一个文件夹" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "用户 %s 与您共享了文件\"%s\"。文件下载地址:%s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "未提供分类类型。" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "没有可添加分类?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "此分类已存在:%s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "未提供对象类型。" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID未提供。" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "向收藏夹中新增%s时出错。" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "没有选择要删除的类别" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "从收藏夹中移除%s时出错。" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "星期日" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "星期一" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "星期二" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "星期三" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "星期四" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "星期五" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "星期六" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "一月" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "二月" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "三月" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "四月" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "五月" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "六月" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "七月" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "八月" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "九月" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "十月" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "十一月" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "十二月" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "设置" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "秒前" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "一分钟前" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} 分钟前" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1小时前" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} 小时前" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "今天" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "昨天" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} 天前" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "上月" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} 月前" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "月前" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "去年" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "年前" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "好" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "取消" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "选择(&C)..." +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "是" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "否" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "未指定对象类型。" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -251,363 +243,363 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "错误" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "未指定App名称。" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "所需文件{file}未安装!" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "已共享" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "共享" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "共享时出错" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "取消共享时出错" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "修改权限时出错" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "{owner}共享给您及{group}组" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr " {owner}与您共享" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "共享" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "共享链接" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "密码保护" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "密码" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "发送链接到个人" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "发送" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "设置过期日期" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "过期日期" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "通过Email共享" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "未找到此人" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "不允许二次共享" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "在{item} 与 {user}共享。" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "取消共享" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "可以修改" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "访问控制" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "创建" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "更新" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "删除" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "共享" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "密码已受保护" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "取消设置过期日期时出错" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "设置过期日期时出错" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "正在发送..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "邮件已发送" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "更新不成功。请汇报将此问题汇报给 ownCloud 社区。" +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "更新成功。正在重定向至 ownCloud。" +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "重置 ownCloud 密码" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "使用以下链接重置您的密码:{link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "您将会收到包含可以重置密码链接的邮件。" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "重置邮件已发送。" +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "请求失败!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "用户名" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "请求重置" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "您的密码已重置" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "到登录页面" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "新密码" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "重置密码" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "个人" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "用户" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "应用" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "管理员" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "帮助" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "访问禁止" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "未找到云" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "编辑分类" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "添加" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "安全警告" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "你的PHP版本容易受到空字节攻击 (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "为保证安全使用 ownCloud 请更新您的PHP。" +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "随机数生成器无效,请启用PHP的OpenSSL扩展" +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "没有安全随机码生成器,攻击者可能会猜测密码重置信息从而窃取您的账户" +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "您的数据目录和文件可能可以直接被互联网访问,因为 .htaccess 并未正常工作。" +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "关于如何配置服务器,请参见 此文档。" +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "创建管理员账号" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "高级" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "数据目录" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "配置数据库" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "将被使用" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "数据库用户" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "数据库密码" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "数据库名" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "数据库表空间" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "数据库主机" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "安装完成" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "由您掌控的网络服务" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "注销" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "自动登录被拒绝!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "如果您没有最近修改您的密码,您的帐户可能会受到影响!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "请修改您的密码,以保护您的账户安全。" +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "忘记密码?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "记住" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "登录" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "其他登录方式" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "上一页" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "下一页" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "更新 ownCloud 到版本 %s,这可能需要一些时间。" +msgstr "" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 09a04b07f4..8c874e83f6 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -3,20 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# hanfeng , 2012 -# Dianjin Wang <1132321739qq@gmail.com>, 2012 -# marguerite su , 2013 -# leonfeng , 2012 -# waterone , 2012 -# Xuetian Weng , 2013 -# Xuetian Weng , 2011, 2012 -# zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -28,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "无法移动 %s - 同名文件已存在" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "无法移动 %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "无法重命名文件" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "没有文件被上传。未知错误" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "没有发生错误,文件上传成功。" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "只上传了文件的一部分" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "文件没有上传" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "缺少临时目录" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "写入磁盘失败" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "没有足够的存储空间" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "无效文件夹。" +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "文件" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "分享" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "永久删除" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "删除" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "重命名" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "操作等待中" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} 已存在" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "替换" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "建议名称" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "取消" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "已将 {old_name}替换成 {new_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "撤销" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "进行删除操作" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1个文件上传中" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "文件上传中" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' 是一个无效的文件名。" +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "文件名不能为空。" +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "您的存储空间已满,文件将无法更新或同步!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "您的存储空间即将用完 ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "没有足够可用空间" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "上传已取消" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL不能为空" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "错误" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "名称" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "大小" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "修改日期" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1个文件夹" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} 个文件夹" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 个文件" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} 个文件" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "上传" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "文件处理" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "最大上传大小" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "最大允许: " +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "多文件和文件夹下载需要此项。" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "启用 ZIP 下载" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 为无限制" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIP 文件的最大输入大小" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "保存" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "新建" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "文本文件" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "文件夹" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "来自链接" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "删除文件" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "取消上传" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "您没有写权限" +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "这里还什么都没有。上传些东西吧!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "下载" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "取消分享" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "上传文件过大" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "文件正在被扫描,请稍候。" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "当前扫描" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "正在更新文件系统缓存..." +msgstr "" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 0b01ef9057..fa7acc1435 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# CyberCowBoy , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -21,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "加密" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "文件加密已启用." +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "如下的文件类型将不会被加密:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "从加密中排除如下的文件类型:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "无" +msgstr "" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 9ee0d64daf..26abe90d35 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -3,17 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# hanfeng , 2012 -# Dianjin Wang <1132321739qq@gmail.com>, 2012 -# marguerite su , 2013 -# zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 17:44+0200\n" -"PO-Revision-Date: 2013-04-24 04:00+0000\n" -"Last-Translator: zhangmin \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,105 +19,105 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "权限已授予。" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "配置Dropbox存储时出错" +msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "授权" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "请提供有效的Dropbox应用key和secret" +msgstr "" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "配置Google Drive存储时出错" +msgstr "" #: lib/config.php:431 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" +msgstr "" #: lib/config.php:434 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" +msgstr "" #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "警告: PHP中未启用或未安装Curl支持。ownCloud / WebDAV 或 GoogleDrive 不能挂载。请请求您的系统管理员安装该它。" +msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "外部存储" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "目录名称" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "外部存储" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "配置" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "选项" +msgstr "" #: templates/settings.php:13 msgid "Applicable" -msgstr "适用的" +msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "添加存储" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "未设置" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "所有用户" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "组" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "用户" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "删除" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "启用用户外部存储" +msgstr "" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "允许用户挂载自有外部存储" +msgstr "" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "SSL根证书" +msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "导入根证书" +msgstr "" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index f77a967602..fa664c726c 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -20,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "密码" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "提交" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s与您共享了%s文件夹" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s与您共享了%s文件" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "下载" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "没有预览" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "您控制的web服务" +msgstr "" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 51216ed592..4075579060 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# CyberCowBoy , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -21,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "无法彻底删除文件%s" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "无法恢复%s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "执行恢复操作" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "错误" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "彻底删除文件" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "永久删除" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "名称" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "已删除" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1个文件夹" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} 个文件夹" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 个文件" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} 个文件" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "这里没有东西. 你的回收站是空的!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "恢复" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "删除" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "已删除文件" +msgstr "" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index d617fbb9d4..a26b6a4701 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "无法恢复: %s" +msgstr "" #: history.php:40 msgid "success" -msgstr "成功" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "文件 %s 已被恢复到历史版本 %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "失败" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "文件 %s 无法被恢复到历史版本 %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "该文件没有历史版本" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "未指定路径" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "版本" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "点击恢复按钮可将文件恢复到之前的版本" +msgstr "" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index ed930d2280..89c609ceb5 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# hanfeng , 2012 -# marguerite su , 2013 -# leonfeng , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -22,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "帮助" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "个人" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "设置" +msgstr "" #: app.php:385 msgid "Users" -msgstr "用户" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "应用" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "管理" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP 下载已经关闭" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "需要逐一下载文件" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "回到文件" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "选择的文件太大,无法生成 zip 文件。" +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "无法确定" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "应用程序未启用" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "认证出错" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token 过期,请刷新页面。" +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "文件" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "文本" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "图片" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "请设置一个管理员用户名。" +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "请设置一个管理员密码。" +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s 输入数据库用户名。" +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s 输入数据库名称。" +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s 您不能在数据库名称中使用英文句号。" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s 设置数据库所在主机。" +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL 数据库用户名和/或密码无效" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "你需要输入一个数据库中已有的账户或管理员账户。" +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle 数据库用户名和/或密码无效" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL 数据库用户名和/或密码无效" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "数据库错误:\"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "冲突命令为:\"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL 用户 '%s'@'localhost' 已存在。" +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL 用户 '%s'@'%%' 已存在" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户。" +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL 用户名和/或密码无效:%s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "请认真检查安装指南." +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "几秒前" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1分钟前" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d 分钟前" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1小时前" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d小时前" +msgstr "" #: template.php:118 msgid "today" -msgstr "今天" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "昨天" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d 天前" +msgstr "" #: template.php:121 msgid "last month" -msgstr "上月" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d 月前" +msgstr "" #: template.php:123 msgid "last year" -msgstr "去年" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "几年前" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s 已存在。点此 获取更多信息" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "已更新。" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "更新检查功能被禁用。" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "无法找到分类 \"%s\"" +msgstr "" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 506620d707..a1c1edd4d7 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -3,20 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# hanfeng , 2012 -# ccb , 2013 -# Dianjin Wang <1132321739qq@gmail.com>, 2012-2013 -# Phoenix Nemo <>, 2012 -# leonfeng , 2012 -# waterone , 2012 -# Xuetian Weng , 2013 -# Xuetian Weng , 2011, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -27,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "无法从应用商店载入列表" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "认证错误" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -40,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "无法修改显示名称" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "已存在该组" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "无法添加组" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "无法开启App" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "电子邮件已保存" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "无效的电子邮件" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "无法删除组" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "无法删除用户" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "语言已修改" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "非法请求" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "管理员不能将自己移出管理组。" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "无法把用户添加到组 %s" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "无法从组%s中移除用户" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "无法更新 app。" +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "更新至 {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "禁用" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "启用" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "请稍等...." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "错误" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "正在更新...." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "更新 app 时出错" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "已更新" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "正在保存" +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "已经删除" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "撤销" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "无法移除用户" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "组" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "组管理员" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "删除" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "添加组" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "必须提供合法的用户名" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "创建用户出错" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "必须提供合法的密码" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "简体中文" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "安全警告" +msgstr "" #: templates/admin.php:18 msgid "" @@ -188,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器根目录以外。" +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "设置警告" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "请认真检查安装指南." +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "模块'文件信息'丢失" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果." +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "本地化无法工作" +msgstr "" #: templates/admin.php:63 #, php-format @@ -225,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "此ownCloud服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s" +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "因特网连接无法工作" +msgstr "" #: templates/admin.php:78 msgid "" @@ -239,102 +231,102 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "此ownCloud服务器上没有可用的因特网连接. 这意味着某些特性例如挂载外部存储器, 提醒更新或安装第三方应用无法工作. 从远程访问文件和发送提醒电子邮件可能也无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "计划任务" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "每个页面加载后执行一个任务" +msgstr "" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。" +msgstr "" #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件" +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "共享" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "启用共享API" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "允许应用软件使用共享API" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "允许链接" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "允许用户使用连接公开共享项目" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "允许再次共享" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "允许用户将共享给他们的项目再次共享" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "允许用户向任何人共享" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "允许用户只向同组用户共享" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "安全" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "强制使用 HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "强制客户端通过加密连接连接到 ownCloud。" +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "请经由HTTPS连接到这个ownCloud实例来启用或禁用强制SSL." +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "日志" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "日志级别" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "更多" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "更少" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "版本" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -344,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "由ownCloud社区开发, 源代码AGPL许可证下发布。" +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "添加应用" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "更多应用" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "选择一个应用" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "查看在 app.owncloud.com 的应用程序页面" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-核准: " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "更新" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "用户文档" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "管理员文档" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "在线文档" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "论坛" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "问题跟踪器" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "商业支持" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "你已使用 %s,有效空间 %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "安装应用进行文件同步" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "再次显示首次运行向导" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "密码" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "密码已修改" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "无法修改密码" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "当前密码" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "新密码" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "修改密码" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "显示名称" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "电子邮件" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "您的电子邮件" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "填写电子邮件地址以启用密码恢复功能" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "语言" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "帮助翻译" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "用该地址来连接文件管理器中的 ownCloud" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "登录名称" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "创建" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "默认存储" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "无限" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "其它" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "存储" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "修改显示名称" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "设置新密码" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "默认" +msgstr "" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 5b309314a9..91d0939e69 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# marguerite su , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -21,315 +19,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "未能删除服务器配置" +msgstr "" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "配置有效,能够建立连接!" +msgstr "" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "配置有效但绑定失败。请检查服务器设置和认证信息。" +msgstr "" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "配置无效。更多细节请查看 ownCloud 日志。" +msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "删除失败" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "从近期的服务器配置中导入设置?" +msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "保留设置吗?" +msgstr "" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "无法添加服务器配置" +msgstr "" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "连接测试成功" +msgstr "" #: js/settings.js:126 msgid "Connection test failed" -msgstr "连接测试失败" +msgstr "" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "您真的想要删除当前服务器配置吗?" +msgstr "" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "确认删除" +msgstr "" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "警告:应用 user_ldap 和 user_webdavauth 不兼容。您可能遭遇未预料的行为。请垂询您的系统管理员禁用其中一个。" +msgstr "" #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "警告: PHP LDAP 模块未安装,后端将无法工作。请请求您的系统管理员安装该模块。" +msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "服务器配置" +msgstr "" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "添加服务器配置" +msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "主机" +msgstr "" #: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "可以忽略协议,但如要使用SSL,则需以ldaps://开头" +msgstr "" #: templates/settings.php:39 msgid "Base DN" -msgstr "Base DN" +msgstr "" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "每行一个基本判别名" +msgstr "" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "您可以在高级选项卡里为用户和组指定Base DN" +msgstr "" #: templates/settings.php:43 msgid "User DN" -msgstr "User DN" +msgstr "" #: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "客户端使用的DN必须与绑定的相同,比如uid=agent,dc=example,dc=com\n如需匿名访问,将DN和密码保留为空" +msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "密码" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "启用匿名访问,将DN和密码保留为空" +msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "用户登录过滤" +msgstr "" #: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "定义当尝试登录时的过滤器。 在登录过程中,%%uid将会被用户名替换" +msgstr "" #: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "使用 %%uid作为占位符,例如“uid=%%uid”" +msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "用户列表过滤" +msgstr "" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "定义拉取用户时的过滤器" +msgstr "" #: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "没有任何占位符,如 \"objectClass=person\"." +msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "组过滤" +msgstr "" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "定义拉取组信息时的过滤器" +msgstr "" #: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "无需占位符,例如\"objectClass=posixGroup\"" +msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "连接设置" +msgstr "" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "现行配置" +msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "当反选后,此配置将被忽略。" +msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "端口" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "备份 (镜像) 主机" +msgstr "" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "给出一个可选的备份主机。它必须为主 LDAP/AD 服务器的一个镜像。" +msgstr "" #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "备份 (镜像) 端口" +msgstr "" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "禁用主服务器" +msgstr "" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "当开启后,ownCloud 将仅连接到镜像服务器。" +msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "使用TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "对于 LDAPS 连接不要额外启用它,连接必然失败。" +msgstr "" #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "大小写敏感LDAP服务器(Windows)" +msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "关闭SSL证书验证" +msgstr "" #: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "如果链接仅在此选项时可用,在您的ownCloud服务器中导入LDAP服务器的SSL证书。" +msgstr "" #: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "暂不推荐,仅供测试" +msgstr "" #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "缓存存活时间" +msgstr "" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "以秒计。修改将清空缓存。" +msgstr "" #: templates/settings.php:80 msgid "Directory Settings" -msgstr "目录设置" +msgstr "" #: templates/settings.php:82 msgid "User Display Name Field" -msgstr "用户显示名称字段" +msgstr "" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "用来生成用户的ownCloud名称的 LDAP属性" +msgstr "" #: templates/settings.php:83 msgid "Base User Tree" -msgstr "基础用户树" +msgstr "" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "每行一个用户基准判别名" +msgstr "" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "用户搜索属性" +msgstr "" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "可选;每行一个属性" +msgstr "" #: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "组显示名称字段" +msgstr "" #: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "用来生成组的ownCloud名称的LDAP属性" +msgstr "" #: templates/settings.php:86 msgid "Base Group Tree" -msgstr "基础组树" +msgstr "" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "每行一个群组基准判别名" +msgstr "" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "群组搜索属性" +msgstr "" #: templates/settings.php:88 msgid "Group-Member association" -msgstr "组成员关联" +msgstr "" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "特殊属性" +msgstr "" #: templates/settings.php:92 msgid "Quota Field" -msgstr "配额字段" +msgstr "" #: templates/settings.php:93 msgid "Quota Default" -msgstr "默认配额" +msgstr "" #: templates/settings.php:93 msgid "in bytes" -msgstr "字节数" +msgstr "" #: templates/settings.php:94 msgid "Email Field" -msgstr "电邮字段" +msgstr "" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "用户主目录命名规则" +msgstr "" #: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "将用户名称留空(默认)。否则指定一个LDAP/AD属性" +msgstr "" #: templates/settings.php:99 msgid "Test Configuration" -msgstr "测试配置" +msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "帮助" +msgstr "" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index b25f65cbed..f9e382d5b1 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# amanda.shuuemura , 2012 -# dtsang29 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -84,83 +82,83 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "星期日" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "星期一" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "星期二" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "星期三" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "星期四" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "星期五" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "星期六" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "一月" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "二月" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "三月" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "四月" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "五月" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "六月" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "七月" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "八月" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "九月" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "十月" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "十一月" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "十二月" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "設定" +msgstr "" #: js/js.js:718 msgid "seconds ago" @@ -184,11 +182,11 @@ msgstr "" #: js/js.js:723 msgid "today" -msgstr "今日" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "昨日" +msgstr "" #: js/js.js:725 msgid "{days} days ago" @@ -196,7 +194,7 @@ msgstr "" #: js/js.js:726 msgid "last month" -msgstr "前一月" +msgstr "" #: js/js.js:727 msgid "{months} months ago" @@ -204,7 +202,7 @@ msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "個月之前" +msgstr "" #: js/js.js:729 msgid "last year" @@ -216,11 +214,11 @@ msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "OK" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "取消" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" @@ -228,11 +226,11 @@ msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Yes" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "No" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -245,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "錯誤" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -257,47 +255,47 @@ msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "已分享" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "分享" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "分享時發生錯誤" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "取消分享時發生錯誤" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "更改權限時發生錯誤" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "{owner}與你及群組的分享" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner}與你的分享" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "分享" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "以連結分享" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "密碼保護" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "密碼" +msgstr "" #: js/share.js:173 msgid "Email link to person" @@ -305,23 +303,23 @@ msgstr "" #: js/share.js:174 msgid "Send" -msgstr "傳送" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "設定分享期限" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "分享期限" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "以電郵分享" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "找不到" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" @@ -333,7 +331,7 @@ msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "取消分享" +msgstr "" #: js/share.js:320 msgid "can edit" @@ -345,23 +343,23 @@ msgstr "" #: js/share.js:325 msgid "create" -msgstr "新增" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "更新" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "刪除" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "分享" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "密碼保護" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" @@ -373,11 +371,11 @@ msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "傳送中" +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "郵件已傳" +msgstr "" #: js/update.js:14 msgid "" @@ -388,7 +386,7 @@ msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "更新成功, 正" +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -396,64 +394,64 @@ msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "請用以下連結重設你的密碼: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "你將收到一封電郵" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "重設密碼郵件已傳" +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "請求失敗" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "用戶名稱" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "重設" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "你的密碼已被重設" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "前往登入版面" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "新密碼" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "重設密碼" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "個人" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "用戶" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "軟件" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "管理" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "幫助" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" @@ -461,7 +459,7 @@ msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "未找到Cloud" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -469,7 +467,7 @@ msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "加入" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -511,11 +509,11 @@ msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "建立管理員帳戶" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "進階" +msgstr "" #: templates/installation.php:64 msgid "Data folder" @@ -523,25 +521,25 @@ msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "設定資料庫" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "將被使用" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "資料庫帳戶" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "資料庫密碼" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "資料庫名稱" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" @@ -561,33 +559,33 @@ msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "登出" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "自動登入被拒" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "如果你近期未曾更改密碼, 你的帳號可能被洩露!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "請更改你的密碼以保護你的帳戶" +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "忘記密碼" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "記住" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "登入" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" @@ -595,13 +593,13 @@ msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "前一步" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "下一步" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "ownCloud (ver. %s)更新中, 請耐心等侯" +msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 2a0d9458c6..85d176f4e5 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# amanda.shuuemura , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -77,11 +76,11 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "文件" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "分享" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" @@ -89,7 +88,7 @@ msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "刪除" +msgstr "" #: js/fileactions.js:194 msgid "Rename" @@ -190,11 +189,11 @@ msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "錯誤" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "名稱" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" @@ -210,7 +209,7 @@ msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{}文件夾" +msgstr "" #: js/files.js:903 msgid "1 file" @@ -222,7 +221,7 @@ msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "上傳" +msgstr "" #: templates/admin.php:5 msgid "File handling" @@ -254,7 +253,7 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "儲存" +msgstr "" #: templates/index.php:7 msgid "New" @@ -290,11 +289,11 @@ msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "下載" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "取消分享" +msgstr "" #: templates/index.php:108 msgid "Upload too large" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index e74b971e80..7ee07c4e8e 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dennis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -20,15 +19,15 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "加密" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "檔案加密已開啟" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "以下文件類別將不會被加密" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" @@ -36,4 +35,4 @@ msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "空" +msgstr "" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index e59fea5516..6dd137db97 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -95,16 +95,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "群組" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "用戶" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "刪除" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 323dd803c1..b1bf8d4c4a 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "密碼" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" @@ -37,7 +37,7 @@ msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "下載" +msgstr "" #: templates/public.php:40 msgid "No preview available for" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index a487e0d631..811383f6e9 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "錯誤" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" @@ -45,7 +45,7 @@ msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "名稱" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" @@ -57,7 +57,7 @@ msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{}文件夾" +msgstr "" #: js/trash.js:194 msgid "1 file" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "刪除" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index ee5d894d76..83bc2b2ad8 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/files_versions.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dennis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -25,7 +24,7 @@ msgstr "" #: history.php:40 msgid "success" -msgstr "成功" +msgstr "" #: history.php:42 #, php-format @@ -34,7 +33,7 @@ msgstr "" #: history.php:49 msgid "failure" -msgstr "失敗" +msgstr "" #: history.php:51 #, php-format @@ -43,7 +42,7 @@ msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "沒有以往版本" +msgstr "" #: history.php:74 msgid "No path specified" @@ -51,7 +50,7 @@ msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "版本" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 20c4b09967..cb5fe691fd 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-18 02:04+0200\n" -"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,27 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "幫助" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "個人" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "設定" +msgstr "" #: app.php:385 msgid "Users" -msgstr "用戶" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "軟件" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "管理" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." @@ -75,11 +75,11 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "文件" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "文字" +msgstr "" #: search/provider/file.php:29 msgid "Images" @@ -113,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -207,11 +207,11 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "今日" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "昨日" +msgstr "" #: template.php:120 #, php-format @@ -220,7 +220,7 @@ msgstr "" #: template.php:121 msgid "last month" -msgstr "前一月" +msgstr "" #: template.php:122 #, php-format diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 833088ea65..b612246155 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -106,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "錯誤" +msgstr "" #: js/apps.js:90 msgid "Updating...." @@ -139,7 +139,7 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "群組" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" @@ -147,7 +147,7 @@ msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "刪除" +msgstr "" #: js/users.js:262 msgid "add group" @@ -401,7 +401,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "密碼" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" @@ -417,7 +417,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "新密碼" +msgstr "" #: templates/personal.php:44 msgid "Change password" @@ -429,7 +429,7 @@ msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "電郵" +msgstr "" #: templates/personal.php:70 msgid "Your email address" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index c939df9acc..f31002ca12 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "密碼" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -184,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "連接埠" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "幫助" +msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 22db10f4ea..dd6e09112b 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -3,20 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# admachen , 2013 -# Hydriz , 2013 -# Donahue Chuang , 2012 -# dw4dev , 2012 -# Ming Yi Wu , 2012 -# pellaeon , 2013 -# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 18:30+0200\n" -"PO-Revision-Date: 2013-04-24 16:00+0000\n" -"Last-Translator: admachen \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,222 +20,222 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "用戶 %s 與您分享了一個檔案" +msgstr "" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "用戶 %s 與您分享了一個資料夾" +msgstr "" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "用戶 %s 與您分享了檔案 \"%s\" ,您可以從這裡下載它: %s" +msgstr "" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "用戶 %s 與您分享了資料夾 \"%s\" ,您可以從這裡下載它: %s" +msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "未提供分類類型。" +msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "沒有可增加的分類?" +msgstr "" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "分類已經存在: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "不支援的物件類型" +msgstr "" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "未提供 %s ID 。" +msgstr "" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "加入 %s 到最愛時發生錯誤。" +msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "沒有選擇要刪除的分類。" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "從最愛移除 %s 時發生錯誤。" +msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "週日" +msgstr "" #: js/config.php:35 msgid "Monday" -msgstr "週一" +msgstr "" #: js/config.php:36 msgid "Tuesday" -msgstr "週二" +msgstr "" #: js/config.php:37 msgid "Wednesday" -msgstr "週三" +msgstr "" #: js/config.php:38 msgid "Thursday" -msgstr "週四" +msgstr "" #: js/config.php:39 msgid "Friday" -msgstr "週五" +msgstr "" #: js/config.php:40 msgid "Saturday" -msgstr "週六" +msgstr "" #: js/config.php:45 msgid "January" -msgstr "一月" +msgstr "" #: js/config.php:46 msgid "February" -msgstr "二月" +msgstr "" #: js/config.php:47 msgid "March" -msgstr "三月" +msgstr "" #: js/config.php:48 msgid "April" -msgstr "四月" +msgstr "" #: js/config.php:49 msgid "May" -msgstr "五月" +msgstr "" #: js/config.php:50 msgid "June" -msgstr "六月" +msgstr "" #: js/config.php:51 msgid "July" -msgstr "七月" +msgstr "" #: js/config.php:52 msgid "August" -msgstr "八月" +msgstr "" #: js/config.php:53 msgid "September" -msgstr "九月" +msgstr "" #: js/config.php:54 msgid "October" -msgstr "十月" +msgstr "" #: js/config.php:55 msgid "November" -msgstr "十一月" +msgstr "" #: js/config.php:56 msgid "December" -msgstr "十二月" +msgstr "" #: js/js.js:286 msgid "Settings" -msgstr "設定" +msgstr "" #: js/js.js:718 msgid "seconds ago" -msgstr "幾秒前" +msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "1 分鐘前" +msgstr "" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "{minutes} 分鐘前" +msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "1 個小時前" +msgstr "" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "{hours} 小時前" +msgstr "" #: js/js.js:723 msgid "today" -msgstr "今天" +msgstr "" #: js/js.js:724 msgid "yesterday" -msgstr "昨天" +msgstr "" #: js/js.js:725 msgid "{days} days ago" -msgstr "{days} 天前" +msgstr "" #: js/js.js:726 msgid "last month" -msgstr "上個月" +msgstr "" #: js/js.js:727 msgid "{months} months ago" -msgstr "{months} 個月前" +msgstr "" #: js/js.js:728 msgid "months ago" -msgstr "幾個月前" +msgstr "" #: js/js.js:729 msgid "last year" -msgstr "去年" +msgstr "" #: js/js.js:730 msgid "years ago" -msgstr "幾年前" +msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "好" +msgstr "" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "取消" +msgstr "" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "選擇" +msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "是" +msgstr "" #: js/oc-dialogs.js:222 msgid "No" -msgstr "否" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "未指定物件類型。" +msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -250,363 +243,363 @@ msgstr "未指定物件類型。" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "錯誤" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "沒有指定 app 名稱。" +msgstr "" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "沒有安裝所需的檔案 {file} !" +msgstr "" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "已分享" +msgstr "" #: js/share.js:90 msgid "Share" -msgstr "分享" +msgstr "" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "分享時發生錯誤" +msgstr "" #: js/share.js:136 msgid "Error while unsharing" -msgstr "取消分享時發生錯誤" +msgstr "" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "修改權限時發生錯誤" +msgstr "" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "由 {owner} 分享給您和 {group}" +msgstr "" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "{owner} 已經和您分享" +msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "與...分享" +msgstr "" #: js/share.js:164 msgid "Share with link" -msgstr "使用連結分享" +msgstr "" #: js/share.js:167 msgid "Password protect" -msgstr "密碼保護" +msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "密碼" +msgstr "" #: js/share.js:173 msgid "Email link to person" -msgstr "將連結 email 給別人" +msgstr "" #: js/share.js:174 msgid "Send" -msgstr "寄出" +msgstr "" #: js/share.js:178 msgid "Set expiration date" -msgstr "設置到期日" +msgstr "" #: js/share.js:179 msgid "Expiration date" -msgstr "到期日" +msgstr "" #: js/share.js:211 msgid "Share via email:" -msgstr "透過電子郵件分享:" +msgstr "" #: js/share.js:213 msgid "No people found" -msgstr "沒有找到任何人" +msgstr "" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "不允許重新分享" +msgstr "" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "已和 {user} 分享 {item}" +msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "取消共享" +msgstr "" #: js/share.js:320 msgid "can edit" -msgstr "可編輯" +msgstr "" #: js/share.js:322 msgid "access control" -msgstr "存取控制" +msgstr "" #: js/share.js:325 msgid "create" -msgstr "建立" +msgstr "" #: js/share.js:328 msgid "update" -msgstr "更新" +msgstr "" #: js/share.js:331 msgid "delete" -msgstr "刪除" +msgstr "" #: js/share.js:334 msgid "share" -msgstr "分享" +msgstr "" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "受密碼保護" +msgstr "" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "解除過期日設定失敗" +msgstr "" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "錯誤的到期日設定" +msgstr "" #: js/share.js:604 msgid "Sending ..." -msgstr "正在傳送..." +msgstr "" #: js/share.js:615 msgid "Email sent" -msgstr "Email 已寄出" +msgstr "" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "升級失敗,請將此問題回報 ownCloud 社群。" +msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "升級成功,正將您重新導向至 ownCloud 。" +msgstr "" #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "ownCloud 密碼重設" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "請至以下連結重設您的密碼: {link}" +msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "重設密碼的連結將會寄到你的電子郵件信箱。" +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "重設郵件已送出。" +msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "請求失敗!" +msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "使用者名稱" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "請求重設" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "您的密碼已重設" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "至登入頁面" +msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "新密碼" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "重設密碼" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "個人" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "使用者" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "應用程式" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "管理者" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "幫助" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "存取被拒" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "未發現雲端" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "編輯分類" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "增加" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "安全性警告" +msgstr "" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)" +msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "請更新您的 PHP 安裝以更安全地使用 ownCloud 。" +msgstr "" #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "沒有可用的亂數產生器,請啟用 PHP 中的 OpenSSL 擴充功能。" +msgstr "" #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。" +msgstr "" #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "您的資料目錄看起來可以被 Internet 公開存取,因為 .htaccess 設定並未生效。" +msgstr "" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "請參考說明文件以瞭解如何正確設定您的伺服器。" +msgstr "" #: templates/installation.php:44 msgid "Create an admin account" -msgstr "建立一個管理者帳號" +msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "進階" +msgstr "" #: templates/installation.php:64 msgid "Data folder" -msgstr "資料夾" +msgstr "" #: templates/installation.php:74 msgid "Configure the database" -msgstr "設定資料庫" +msgstr "" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "將會使用" +msgstr "" #: templates/installation.php:137 msgid "Database user" -msgstr "資料庫使用者" +msgstr "" #: templates/installation.php:144 msgid "Database password" -msgstr "資料庫密碼" +msgstr "" #: templates/installation.php:149 msgid "Database name" -msgstr "資料庫名稱" +msgstr "" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "資料庫 tablespace" +msgstr "" #: templates/installation.php:166 msgid "Database host" -msgstr "資料庫主機" +msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "完成設定" +msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "由您控制的網路服務" +msgstr "" #: templates/layout.user.php:58 msgid "Log out" -msgstr "登出" +msgstr "" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "自動登入被拒!" +msgstr "" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!" +msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "請更改您的密碼以再次取得您帳戶的控制權。" +msgstr "" #: templates/login.php:34 msgid "Lost your password?" -msgstr "忘記密碼?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "記住" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "登入" +msgstr "" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "替代登入方法" +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "上一頁" +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "下一頁" +msgstr "" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。" +msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index f8eecea64c..9d7ff7d5b1 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -3,21 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# admachen , 2013 -# Hydriz , 2013 -# Donahue Chuang , 2012 -# dw4dev , 2012 -# Eddy Chang , 2012 -# pellaeon , 2013 -# orinx , 2013 -# pellaeon , 2013 -# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:55+0200\n" -"PO-Revision-Date: 2013-04-25 23:00+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -29,299 +20,299 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "無法移動 %s - 同名的檔案已經存在" +msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "無法移動 %s" +msgstr "" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "無法重新命名檔案" +msgstr "" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "沒有檔案被上傳。未知的錯誤。" +msgstr "" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "無錯誤,檔案上傳成功" +msgstr "" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" +msgstr "" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" +msgstr "" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "只有檔案的一部分被上傳" +msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "沒有檔案被上傳" +msgstr "" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "找不到暫存資料夾" +msgstr "" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "寫入硬碟失敗" +msgstr "" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "儲存空間不足" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "無效的資料夾。" +msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "檔案" +msgstr "" #: js/fileactions.js:116 msgid "Share" -msgstr "分享" +msgstr "" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "永久刪除" +msgstr "" #: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "刪除" +msgstr "" #: js/fileactions.js:194 msgid "Rename" -msgstr "重新命名" +msgstr "" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "等候中" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "{new_name} 已經存在" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "取代" +msgstr "" #: js/filelist.js:252 msgid "suggest name" -msgstr "建議檔名" +msgstr "" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "取消" +msgstr "" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "使用 {new_name} 取代 {old_name}" +msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "復原" +msgstr "" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "進行刪除動作" +msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 個檔案正在上傳" +msgstr "" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "檔案正在上傳中" +msgstr "" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' 是不合法的檔名。" +msgstr "" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "檔名不能為空。" +msgstr "" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。" +msgstr "" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "您的儲存空間已滿,沒有辦法再更新或是同步檔案!" +msgstr "" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "您的儲存空間快要滿了 ({usedSpacePercent}%)" +msgstr "" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" +msgstr "" #: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" +msgstr "" #: js/files.js:272 msgid "Not enough space available" -msgstr "沒有足夠的可用空間" +msgstr "" #: js/files.js:312 msgid "Upload cancelled." -msgstr "上傳已取消" +msgstr "" #: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "檔案上傳中。離開此頁面將會取消上傳。" +msgstr "" #: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL 不能為空白。" +msgstr "" #: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" +msgstr "" #: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 msgid "Error" -msgstr "錯誤" +msgstr "" #: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "名稱" +msgstr "" #: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "大小" +msgstr "" #: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "修改" +msgstr "" #: js/files.js:893 msgid "1 folder" -msgstr "1 個資料夾" +msgstr "" #: js/files.js:895 msgid "{count} folders" -msgstr "{count} 個資料夾" +msgstr "" #: js/files.js:903 msgid "1 file" -msgstr "1 個檔案" +msgstr "" #: js/files.js:905 msgid "{count} files" -msgstr "{count} 個檔案" +msgstr "" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "上傳" +msgstr "" #: templates/admin.php:5 msgid "File handling" -msgstr "檔案處理" +msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "最大上傳檔案大小" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " -msgstr "最大允許:" +msgstr "" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "針對多檔案和目錄下載是必填的。" +msgstr "" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "啟用 Zip 下載" +msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0代表沒有限制" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "針對 ZIP 檔案最大輸入大小" +msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "儲存" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "新增" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "文字檔" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "資料夾" +msgstr "" #: templates/index.php:14 msgid "From link" -msgstr "從連結" +msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "已刪除的檔案" +msgstr "" #: templates/index.php:48 msgid "Cancel upload" -msgstr "取消上傳" +msgstr "" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "您在這裡沒有編輯權。" +msgstr "" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "這裡什麼也沒有,上傳一些東西吧!" +msgstr "" #: templates/index.php:76 msgid "Download" -msgstr "下載" +msgstr "" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "取消共享" +msgstr "" #: templates/index.php:108 msgid "Upload too large" -msgstr "上傳過大" +msgstr "" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。" +msgstr "" #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "正在掃描檔案,請稍等。" +msgstr "" #: templates/index.php:118 msgid "Current scanning" -msgstr "目前掃描" +msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "正在升級檔案系統快取..." +msgstr "" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 23c337b856..6a33b552a8 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Pellaeon Lin , 2013. -# ywang , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -22,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "加密" +msgstr "" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "檔案加密已被啟用" +msgstr "" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "以下的文件類型不會被加密:" +msgstr "" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "從加密中排除的檔案類型:" +msgstr "" #: templates/settings.php:12 msgid "None" -msgstr "無" +msgstr "" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 2b73060b12..11a8a809de 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hydriz , 2013 -# dw4dev , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-24 01:57+0200\n" -"PO-Revision-Date: 2013-04-23 23:58+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -21,7 +19,7 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "訪問權已被准許" +msgstr "" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" @@ -29,7 +27,7 @@ msgstr "" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "准許訪問權" +msgstr "" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." @@ -61,23 +59,23 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "外部儲存裝置" +msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "資料夾名稱" +msgstr "" #: templates/settings.php:10 msgid "External storage" -msgstr "外部儲存裝置" +msgstr "" #: templates/settings.php:11 msgid "Configuration" -msgstr "設定" +msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "選項" +msgstr "" #: templates/settings.php:13 msgid "Applicable" @@ -85,28 +83,28 @@ msgstr "" #: templates/settings.php:33 msgid "Add storage" -msgstr "添加儲存區" +msgstr "" #: templates/settings.php:90 msgid "None set" -msgstr "尚未設定" +msgstr "" #: templates/settings.php:91 msgid "All Users" -msgstr "所有使用者" +msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "群組" +msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "使用者" +msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "刪除" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" @@ -122,4 +120,4 @@ msgstr "" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "匯入根憑證" +msgstr "" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 81782aed68..d4610cdef6 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -3,15 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Pellaeon Lin , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -22,30 +19,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "密碼" +msgstr "" #: templates/authenticate.php:6 msgid "Submit" -msgstr "送出" +msgstr "" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s 分享了資料夾 %s 給您" +msgstr "" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s 分享了檔案 %s 給您" +msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "下載" +msgstr "" #: templates/public.php:40 msgid "No preview available for" -msgstr "無法預覽" +msgstr "" #: templates/public.php:50 msgid "web services under your control" -msgstr "在您掌控之下的網路服務" +msgstr "" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index f903767b93..7dd3817db1 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -3,15 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hydriz , 2013 -# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" -"PO-Revision-Date: 2013-04-19 09:10+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,65 +20,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "無法永久刪除 %s" +msgstr "" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "無法復原 %s" +msgstr "" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "進行復原動作" +msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "錯誤" +msgstr "" #: js/trash.js:34 msgid "delete file permanently" -msgstr "永久刪除檔案" +msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "永久刪除" +msgstr "" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "名稱" +msgstr "" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "已刪除" +msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "1 個資料夾" +msgstr "" #: js/trash.js:186 msgid "{count} folders" -msgstr "{count} 個資料夾" +msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "1 個檔案" +msgstr "" #: js/trash.js:196 msgid "{count} files" -msgstr "{count} 個檔案" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "您的垃圾桶是空的!" +msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "復原" +msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "刪除" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "已刪除的檔案" +msgstr "" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 84176bd3b3..2e9fcaf645 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -3,14 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -22,38 +20,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "無法還原:%s" +msgstr "" #: history.php:40 msgid "success" -msgstr "成功" +msgstr "" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "檔案 %s 已被復原至版本 %s" +msgstr "" #: history.php:49 msgid "failure" -msgstr "失敗" +msgstr "" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "檔案 %s 無法復原至版本 %s" +msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "沒有舊的版本" +msgstr "" #: history.php:74 msgid "No path specified" -msgstr "沒有指定路線" +msgstr "" #: js/versions.js:6 msgid "Versions" -msgstr "版本" +msgstr "" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "按一按復原的按鈕,就能把一個檔案復原至以前的版本" +msgstr "" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 09c7e16617..ad6fd730c4 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -3,18 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hydriz , 2013 -# pellaeon , 2013 -# sofiasu , 2012 -# ywang , 2012 -# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-20 01:59+0200\n" -"PO-Revision-Date: 2013-04-19 09:00+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,236 +19,236 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "說明" +msgstr "" #: app.php:362 msgid "Personal" -msgstr "個人" +msgstr "" #: app.php:373 msgid "Settings" -msgstr "設定" +msgstr "" #: app.php:385 msgid "Users" -msgstr "使用者" +msgstr "" #: app.php:398 msgid "Apps" -msgstr "應用程式" +msgstr "" #: app.php:406 msgid "Admin" -msgstr "管理" +msgstr "" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP 下載已關閉。" +msgstr "" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "檔案需要逐一下載。" +msgstr "" #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "回到檔案列表" +msgstr "" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "選擇的檔案太大以致於無法產生壓縮檔。" +msgstr "" #: helper.php:228 msgid "couldn't be determined" -msgstr "無法判斷" +msgstr "" #: json.php:28 msgid "Application is not enabled" -msgstr "應用程式未啟用" +msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "認證錯誤" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Token 過期,請重新整理頁面。" +msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "檔案" +msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "文字" +msgstr "" #: search/provider/file.php:29 msgid "Images" -msgstr "圖片" +msgstr "" #: setup.php:34 msgid "Set an admin username." -msgstr "設定管理員帳號。" +msgstr "" #: setup.php:37 msgid "Set an admin password." -msgstr "設定管理員密碼。" +msgstr "" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "%s 輸入資料庫使用者名稱。" +msgstr "" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "%s 輸入資料庫名稱。" +msgstr "" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s 資料庫名稱不能包含小數點" +msgstr "" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "%s 設定資料庫主機。" +msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL 用戶名和/或密碼無效" +msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "您必須輸入一個現有的帳號或管理員帳號。" +msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "Oracle 用戶名和/或密碼無效" +msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "MySQL 用戶名和/或密碼無效" - -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "資料庫錯誤:\"%s\"" +msgstr "" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "有問題的指令是:\"%s\"" - -#: setup.php:303 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL 使用者 '%s'@'localhost' 已經存在。" +msgstr "" #: setup.php:304 -msgid "Drop this user from MySQL" -msgstr "在 MySQL 移除這個使用者" - -#: setup.php:309 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL 使用者 '%s'@'%%' 已經存在" +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" #: setup.php:310 -msgid "Drop this user from MySQL." -msgstr "在 MySQL 移除這個使用者。" +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" +msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL 使用者和/或密碼無效:%s" +msgstr "" -#: setup.php:853 +#: setup.php:858 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" +msgstr "" -#: setup.php:854 +#: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "請參考安裝指南。" +msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "幾秒前" +msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "1 分鐘前" +msgstr "" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d 分鐘前" +msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "1 小時之前" +msgstr "" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d 小時之前" +msgstr "" #: template.php:118 msgid "today" -msgstr "今天" +msgstr "" #: template.php:119 msgid "yesterday" -msgstr "昨天" +msgstr "" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d 天前" +msgstr "" #: template.php:121 msgid "last month" -msgstr "上個月" +msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d 個月之前" +msgstr "" #: template.php:123 msgid "last year" -msgstr "去年" +msgstr "" #: template.php:124 msgid "years ago" -msgstr "幾年前" +msgstr "" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s 已經可用。取得 更多資訊" +msgstr "" #: updater.php:81 msgid "up to date" -msgstr "最新的" +msgstr "" #: updater.php:84 msgid "updates check is disabled" -msgstr "更新檢查已停用" +msgstr "" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "找不到分類:\"%s\"" +msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index d4ae50e33b..9994c5c4b5 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -3,23 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hydriz , 2013 -# Donahue Chuang , 2012 -# dw4dev , 2012 -# pellaeon , 2013 -# orinx , 2013 -# pellaeon , 2013 -# sy6614 , 2012 -# ronnietse , 2013 -# weiyu , 2012 -# Jeff5555 , 2012 -# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 01:56+0200\n" -"PO-Revision-Date: 2013-04-25 23:56+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -30,12 +19,12 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "無法從 App Store 讀取清單" +msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "認證錯誤" +msgstr "" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -43,146 +32,146 @@ msgstr "" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "無法更改顯示名稱" +msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "群組已存在" +msgstr "" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "群組增加失敗" +msgstr "" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "未能啟動此app" +msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email已儲存" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "無效的email" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "群組刪除錯誤" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "使用者刪除錯誤" +msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "語言已變更" +msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "無效請求" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "管理者帳號無法從管理者群組中移除" +msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "使用者加入群組%s錯誤" +msgstr "" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "使用者移出群組%s錯誤" +msgstr "" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "無法更新應用程式" +msgstr "" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "更新至 {appversion}" +msgstr "" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "停用" +msgstr "" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "啟用" +msgstr "" #: js/apps.js:55 msgid "Please wait...." -msgstr "請稍候..." +msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "錯誤" +msgstr "" #: js/apps.js:90 msgid "Updating...." -msgstr "更新中..." +msgstr "" #: js/apps.js:93 msgid "Error while updating app" -msgstr "更新應用程式錯誤" +msgstr "" #: js/apps.js:96 msgid "Updated" -msgstr "已更新" +msgstr "" #: js/personal.js:115 msgid "Saving..." -msgstr "儲存中..." +msgstr "" #: js/users.js:43 msgid "deleted" -msgstr "已刪除" +msgstr "" #: js/users.js:43 msgid "undo" -msgstr "復原" +msgstr "" #: js/users.js:75 msgid "Unable to remove user" -msgstr "無法刪除用戶" +msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "群組" +msgstr "" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "群組 管理員" +msgstr "" #: js/users.js:111 templates/users.php:155 msgid "Delete" -msgstr "刪除" +msgstr "" #: js/users.js:262 msgid "add group" -msgstr "新增群組" +msgstr "" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "一定要提供一個有效的用戶名" +msgstr "" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "創建用戶時出現錯誤" +msgstr "" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "一定要提供一個有效的密碼" +msgstr "" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__語言_名稱__" +msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "安全性警告" +msgstr "" #: templates/admin.php:18 msgid "" @@ -191,36 +180,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" +msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "設定警告" +msgstr "" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" +msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "請參考安裝指南。" +msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "遺失 'fileinfo' 模組" +msgstr "" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。" +msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "語系無法運作" +msgstr "" #: templates/admin.php:63 #, php-format @@ -228,11 +217,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。" +msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "去連線" +msgstr "" #: templates/admin.php:78 msgid "" @@ -242,15 +231,15 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" +msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "定期執行" +msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "當頁面載入時,執行" +msgstr "" #: templates/admin.php:111 msgid "" @@ -262,82 +251,82 @@ msgstr "" msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "使用系統的 cron 服務,每分鐘執行一次 owncloud 資料夾中的 cron.php 。" +msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "分享" +msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "啟用分享 API" +msgstr "" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "允許 apps 使用分享 API" +msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "允許連結" +msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "允許使用者透過公開的連結分享檔案" +msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "允許轉貼分享" +msgstr "" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "允許使用者分享其他使用者分享給他的檔案" +msgstr "" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "允許使用者與任何人分享檔案" +msgstr "" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "僅允許使用者在群組內分享" +msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "安全性" +msgstr "" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "強制啟用 HTTPS" +msgstr "" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "強制指定用戶端使用加密的連線連接到 ownCloud" +msgstr "" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "請使用 HTTPS 連線到 ownCloud,或是關閉強制使用 SSL 的選項。" +msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "紀錄" +msgstr "" #: templates/admin.php:196 msgid "Log level" -msgstr "紀錄層級" +msgstr "" #: templates/admin.php:227 msgid "More" -msgstr "更多" +msgstr "" #: templates/admin.php:228 msgid "Less" -msgstr "少" +msgstr "" #: templates/admin.php:235 templates/personal.php:100 msgid "Version" -msgstr "版本" +msgstr "" #: templates/admin.php:238 templates/personal.php:103 msgid "" @@ -347,157 +336,157 @@ msgid "" "licensed under the AGPL." -msgstr "由ownCloud 社區開發,源代碼AGPL許可證下發布。" +msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "添加你的 App" +msgstr "" #: templates/apps.php:12 msgid "More Apps" -msgstr "更多Apps" +msgstr "" #: templates/apps.php:28 msgid "Select an App" -msgstr "選擇一個應用程式" +msgstr "" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "查看應用程式頁面於 apps.owncloud.com" +msgstr "" #: templates/apps.php:36 msgid "-licensed by " -msgstr "-核准: " +msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "更新" +msgstr "" #: templates/help.php:4 msgid "User Documentation" -msgstr "用戶說明文件" +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "管理者說明文件" +msgstr "" #: templates/help.php:9 msgid "Online Documentation" -msgstr "線上說明文件" +msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "論壇" +msgstr "" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Bugtracker" +msgstr "" #: templates/help.php:17 msgid "Commercial Support" -msgstr "商用支援" +msgstr "" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "您已經使用了 %s ,目前可用空間為 %s" +msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "獲取那些同步您的文件的應用程序" +msgstr "" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "再次顯示首次使用精靈" +msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "密碼" +msgstr "" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "你的密碼已更改" +msgstr "" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "無法變更您的密碼" +msgstr "" #: templates/personal.php:40 msgid "Current password" -msgstr "目前密碼" +msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "新密碼" +msgstr "" #: templates/personal.php:44 msgid "Change password" -msgstr "變更密碼" +msgstr "" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "顯示名稱" +msgstr "" #: templates/personal.php:68 msgid "Email" -msgstr "電子郵件" +msgstr "" #: templates/personal.php:70 msgid "Your email address" -msgstr "您的電子郵件信箱" +msgstr "" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "請填入電子郵件信箱以便回復密碼" +msgstr "" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "語言" +msgstr "" #: templates/personal.php:84 msgid "Help translate" -msgstr "幫助翻譯" +msgstr "" #: templates/personal.php:89 msgid "WebDAV" -msgstr "WebDAV" +msgstr "" #: templates/personal.php:91 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" +msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "登入名稱" +msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "建立" +msgstr "" #: templates/users.php:33 msgid "Default Storage" -msgstr "預設儲存區" +msgstr "" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "無限制" +msgstr "" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "其他" +msgstr "" #: templates/users.php:82 msgid "Storage" -msgstr "儲存區" +msgstr "" #: templates/users.php:93 msgid "change display name" -msgstr "修改顯示名稱" +msgstr "" #: templates/users.php:97 msgid "set new password" -msgstr "設定新密碼" +msgstr "" #: templates/users.php:128 msgid "Default" -msgstr "預設" +msgstr "" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index e777005a3c..b735d85a8e 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -3,13 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"POT-Creation-Date: 2013-04-26 10:00+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -40,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "移除失敗" +msgstr "" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -93,7 +92,7 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "主機" +msgstr "" #: templates/settings.php:38 msgid "" @@ -125,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "密碼" +msgstr "" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -185,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "連接阜" +msgstr "" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -211,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "使用TLS" +msgstr "" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -223,7 +222,7 @@ msgstr "" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "關閉 SSL 憑證驗證" +msgstr "" #: templates/settings.php:77 msgid "" @@ -331,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "說明" +msgstr ""